📅  最后修改于: 2023-12-03 15:29:47.847000             🧑  作者: Mango
在 C# 中,如果需要检查字符串、数组等的长度,可以使用以下方法:
使用字符串的 Length 属性获取字符串的长度:
string str = "Hello World";
int length = str.Length; // 获取字符串的长度
使用数组的 Length 属性获取数组的长度:
int[] nums = new int[] { 1, 2, 3, 4, 5 };
int length = nums.Length; // 获取数组的长度
使用字符串的 IsNullOrEmpty 方法可以判断字符串是否为空或长度为0:
string str = "";
bool isEmpty = string.IsNullOrEmpty(str); // 判断字符串是否为空或者长度为0
使用字符串的 IsNullOrWhiteSpace 方法可以判断字符串是否为空或仅包含空格:
string str = " ";
bool isWhiteSpace = string.IsNullOrWhiteSpace(str); // 判断字符串是否为空或仅包含空格
以上就是 C# 中检查长度的方法和技巧。