I'm a bit confused of the usage of the += operator. I understand that it is a compound operator that is used to both add and assign. However I've seen it used in the following manner.
Class objectVar += new Class
what is different about that vs
Class objectVar = new Class
Hopefully that question makes sense.
Thanks in advance.