1 intAge =0;2 stringVV = This. TextBox2.Text;3 if(int. TryParse (VV, outAge ))4 {5Age =int. Parse ( This. TextBox2.Text);6 7 }8 Else9 {TenMessageBox.Show ("age is not plastic ."); One return; A -}
Int. Parse () is a class-tolerant transformation that converts a string of numeric content into an int type.
Throws a ArgumentNullException exception if the string is empty;
Throws a FormatException exception if the string content is not a number;
Throws a OverflowException exception if the string content represents a number that is outside the range represented by the int type;
Int. TryParse and Int. Parse is more similar, but it does not produce an exception, the conversion succeeds and returns True, and the conversion fails to return false. The last parameter is the output value, and if the conversion fails, the output value is 0
-------from Lingbo Cottage---von and super Notes
Determine if user input is one of the int integer methods!