Check out example codes for "string length c#". It will help you in understanding the concepts better.
Code Example 1
string s = "Corona123";
int sizeOfString = s.Length;
Code Example 2
string name = "Anthony";
int nameLength = name.Length;
Console.WriteLine("The name " + name + " contains " + nameLength + "letters.");
Learn ReactJs, React Native from akashmittal.com