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!

Char.IsWhiteSpace

Determines whether the specified character is white space.

[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 character to examine.

Return Value

true if the character is white space, otherwise false.

Remarks

The IsWhitespace method is a wrapper for a Char. It compares the current character instance with IsWhiteSpace and returns a true or false indication whether the character that was checked is white space. (See CharacterInfo.)

See Also

Char Structure | Char Members | System Namespace | Boolean