NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

CharacterInfo.IsWhiteSpace

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;

Parameters

c
The specified character.

Return Value

true if c is a white space character; otherwise, false.

Remarks

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.

See Also

CharacterInfo Class | CharacterInfo Members | System.Globalization Namespace