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

Determines whether the specified character is a decimal digit.

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

Parameters

ch
The specified character.

Return Value

true if c is a decimal digit; otherwise, false.

See Also

CharacterInfo Class | CharacterInfo Members | System.Globalization Namespace