get last character if string c sharp code example
Example 1: c# get last character of string
string str = "Hello World";
string substr = str.Substring(str.Length - 1);
Example 2: get last character of string c#
str = str.Substring(str.Length - 1);