remove 5 last chars of string c# code example
Example 1: c# remove last character from string
string Name = "Teste,"
string ReturnName = "";
ReturnName = Name.Remove(Name.Length - 1);
Example 2: how to remove last 3 characters from string in c#
myString = myString.Substring(0, myString.Length-3);