This method takes a string as input and returns a boolean value representing
if the string is numeric or not.
Namespace:
Abh.Core.Excel2k7.Utilities
Assembly:
Abh.Core.Excel2k7 (in Abh.Core.Excel2k7.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public static bool IsNumeric(
string verifyThis
) |
| Visual Basic (Declaration) |
|---|
Public Shared Function IsNumeric ( _
verifyThis As String _
) As Boolean |
| Visual C++ |
|---|
public:
static bool IsNumeric(
String^ verifyThis
) |
Parameters
- verifyThis
- Type: System..::.String
Pass the string to verify if it is or is not numeric.
Return Value
True is returned if numeric, false if not.
See Also