I have value as belowbelow
string value = "10053409434400003333336533210923";
When I try to parse below it isNumeric
displays always false result because of long (i think)
long n;
bool isNumeric = long.TryParse(value , out n);
if (!isNumeric) // Always false
{
}
Where I miss in code how can I check string (even 50 characters) value is numeric or not ?
Thanks