I want to remove last three characters from a string:
string myString = \"abcdxxx\";
Note that the string is dynamic data.
string test = "abcdxxx"; test = test.Remove(test.Length - 3); //output : abcd