get last 3 string c# code example
Example 1: c# get last character of string
string str = "Hello World";
string substr = str.Substring(str.Length - 1);
Example 2: c# get last two characters of string
var result = str.Substring(str.Length - 2);
string str = "Hello World";
string substr = str.Substring(str.Length - 1);
var result = str.Substring(str.Length - 2);