I need to remove two characters from the end of the string.
So:
string = \"Hello Marco !\"
must be
Hello Marco
s = s.Substring(0, Math.Max(0, s.Length - 2))
to include the case where the length is less than 2