public bool IsNumerico(string Valore)
{
decimal outValue;
if (Decimal.TryParse(Valore, out outValue))
if (outValue == 0)
return false;
else
return true;
else
return false;
}
Le opere pubblicate in questo blog sono sotto la licenza Creative Commons. Attribuzione- No commerciale e no derivate.
Nessun commento:
Posta un commento