Il frammento di codice qui di seguito, illustra una tecnica di come verificare se il valore presente in una casella di testo è numerico oppure te.
Una funzionalità simile a IsNumeric presente nel linguaggi di programmazione Visual Basic Net.
var isNumeric = int.TryParse(TxtNumerofattura.Text.Trim(), out int n);
if (isNumeric == false)
{
MessageBox.Show("Campo Numero fattura dev'essere numerico.", "Informazione", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
}
martedì 31 marzo 2020
Iscriviti a:
Commenti sul post (Atom)
1 commento:
good post on c# is numeric thanks for sharing this post of c# asp.net
Posta un commento