Determines whether the specified character is a white space character.
[Visual Basic] Public Shared Function IsWhiteSpace( _ ByVal c As Char _ ) As Boolean [C#] public static bool IsWhiteSpace( char c ); [C++] public: static bool IsWhiteSpace( __wchar_t c ); [JScript] public static function IsWhiteSpace( c : Char ) : Boolean;
true if c is a white space character; otherwise, false.
The white space characters consist of the blank space characters (see the IsBlankSpace method) as well as characters such as[RB3]\x0009 (horizontal tabulation),\x000a (line feed),\x000b (vertical tabulation),\x000c (form feed),\x000d (carriage return), and so on.
CharacterInfo Class | CharacterInfo Members | System.Globalization Namespace