public bool IsNumerico(string Valore)
{
decimal outValue;
if (Decimal.TryParse(Valore, out outValue))
if (outValue == 0)
return false;
else
return true;
else
return false;
}
Nessun commento:
Posta un commento