Hi all,
I have always approximately read everywhere that "
Once created a string cannot be changed ". Well, can anyone tell me with examples, what is the problem when we declare a string like this :-
string s1 = "Akiii";
string s1 = "Lethal";
Is "s1" getting re-assigned to a newer value or is it creating a different string object s1 and assigning a different value ?
Thanks and Regards
Akiii