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

Determines whether the specified character is a digit.

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

Parameters

c
The character to be examined.

Return Value

True if the character is a digit, otherwise false.

Remarks

Evaluate whether the character that is checked is a digit by calling the IsDigit function.

See Also

Char Structure | Char Members | System Namespace | Boolean