string name = "Anthony";
int nameLength = name.Length;
Console.WriteLine("The name " + name + " contains " + nameLength + "letters.");
string string1 = "A man i hurry just jumped on a tail of a dog and dog has bitten him damagingly";
//get length if string
Console.WriteLine(string1.Length);
string a = "One example";
Console.WriteLine("LENGTH: " + a.Length);
// This code outputs 11
var characters = @"abcu0000def";
string name = "a622AgIdZg32glo3s5ndsS7N7T233U6AWOKp5VWbevkd6xog7gbaBe3xdf3fXPP";
int nameLength = name.Length;
Console.WriteLine("The name " + name + " contains " + nameLength + "letters.");