Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~112 People Reached
Favorite Forums
Member Avatar for Poposhka

Can a String object behave like other reference objects such as in the case below? [code] class MyClass { public String Text = ""; } MyClass a = new MyClass(); a.Text = "Text in a.Text"; MyClass b = a; b.Text = "Text in b.Text"; Debug.WriteLine(a.Text); // Prints 'Text in b.Text" …

Member Avatar for ashishkumar008
0
112