在C#中,可以使用字符串的Length属性来统计字符串的长度。示例如下:
string str = "Hello, World!"; int length = str.Length; Console.WriteLine("字符串的长度为:" + length);
上面的代码将打印出字符串”Hello, World!”的长度为13。