📌  相关文章
📜  c# 检查字符串中的字符 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:21.759000             🧑  作者: Mango

代码示例2
//true if it doesn't contain letters
bool result = hello.Any(x => !char.IsLetter(x));