- check
- The string to check.
| Visual Basic (Declaration) | |
|---|---|
<ExtensionAttribute()> Public Shared Function IsAlphaNumeric( _ ByVal check As String _ ) As Boolean | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
[ExtensionAttribute()] public static bool IsAlphaNumeric( string check ) | |
| C++/CLI | |
|---|---|
[ExtensionAttribute()] public: static bool IsAlphaNumeric( String^ check ) | |
Parameters
- check
- The string to check.
Return Value
true if string is alphanumeric; otherwise, false.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Copy Code