I need to remove two characters from the end of the string.
So:
string = \"Hello Marco !\"
must be
Hello Marco
What about
string s = "Hello Marco !"; s = s.Substring(0, s.Length - 2);