Published
- 1 min read
remove last character from string c#
The solution for this is noted below
remove last character from string c#
Solution
myString = myString.Substring(0, myString.Length-1);
Try other methods by searching on the site. That is if this doesn’t work