how to find length of a string in c# code example
Example 1: string length c#
string name = "Anthony";
int nameLength = name.Length;
Console.WriteLine("The name " + name + " contains " + nameLength + "letters.");
Example 2: length of a string c#
string s = "Corona123";
int sizeOfString = s.Length;