S
supranoob
What is the difference between
Dim thing as New SomeThing
and
Dim thing as SomeThing = New SomeThing?
Also, what causes this? If I take my thing and set a property of it to a
value and then add that thing to a collection, why is it that if I
change the property in my original thing it also changes in the one in
the collection? Or how do I make them independent of each other?
Thanks all.
Dim thing as New SomeThing
and
Dim thing as SomeThing = New SomeThing?
Also, what causes this? If I take my thing and set a property of it to a
value and then add that thing to a collection, why is it that if I
change the property in my original thing it also changes in the one in
the collection? Or how do I make them independent of each other?
Thanks all.

.