325.
string s1 = "Hello";
string s2 = s1;
s1 = "Hello World";
s2 = ?

Strings are immutable.