Determines whether the character c between alphanumeric characters, both uppercase and lowercase,
with numbers.
Namespace: LLCryptoLib.UtilsAssembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)
Syntax
C# |
---|
public static bool IsInAlpha(
char c
) |
Visual Basic |
---|
Public Shared Function IsInAlpha ( _
c As Char _
) As Boolean |
Visual C++ |
---|
public:
static bool IsInAlpha(
wchar_t c
) |
Parameters
- c
- Type: System..::..Char
The character to be found
Return Value
true if c in the specified character set; otherwise,
false.
See Also