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;
true if the character is an ISO control character, otherwise false.
Exception Type | Condition |
---|---|
ArgumentException | if it cannot get the character type information. |
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.)