DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Length Property To Type String
Length property to type string
string sentence= "Dot net zone >> snippet";
Console.WriteLine("Dotnet".Length);
Console.WriteLine(sentence.Length);
Console.WriteLine(50000.ToString().Length);
Output: 6
23
5





