IsLowerCase()
.NET 内置了吗?
public static bool IsLowerCase( this string text ) { if ( string.IsNullOrEmpty( text ) ) { return true; } foreach ( char c in text ) if ( char.IsLetter( c ) && !char.IsLower( c ) ) return false; return true; } "someString".IsLowerCase();
你的意思是Char.IsLower(ch);
?