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.IsISOControl

Determines whether the specified character is an ISO control character.

[Visual Basic]
Public Shared Function IsISOControl( _
   ByVal c As Char _
) As Boolean
[C#]
public static bool IsISOControl(
   char c
);
[C++]
public: static bool IsISOControl(
   __wchar_t c
);
[JScript]
public static function IsISOControl(
   c : Char
) : Boolean;

Parameters

c
The character to examine.

Return Value

true if the character is an ISO control character, otherwise false.

Exceptions

Exception Type Condition
ArgumentException if it cannot get the character type information.

Remarks

The IsISOControl method compares the current character instance and determines whether it is an ISO control character. (See CultureInfo and RegionInfo for more information on ISO.)

See Also

Char Structure | Char Members | System Namespace | Boolean