IsAlphaOrDigit(Char) Method
In This Topic
Indicates whether the specified Unicode character is categorized as a alphabet letter or digit.
Syntax
'Declaration
Public Overloads Shared Function IsAlphaOrDigit( _
ByVal As Char _
) As Boolean
public static bool IsAlphaOrDigit(
char
)
Parameters
- c
- A Unicode character.
Return Value
true if c is a alphabet letter or digit; otherwise, false.
See Also