User-1232255770 posted
a string is a reference type (so a pointer to an address) , i want to understand this so the following code
string one = "test1";
string copyone = one;
one = "test2";
string tmpstr = one + "" + copyone;
the values of one and copyone in the tmpstr are ,"test2" , "test1",
i would expect "test2", "test2" because its a reference , (the way it behaves is like a value type , i think)
what am i missing here ?