Int I =-1;
Bool B = int. tryparse (null, out I );
After the execution is complete, B is equal to false, I is equal to 0, rather than-1. Remember.
Int I =-1;
Bool B = int. tryparse ("123", out I );
After the execution is completed, B is equal to true, and I is equal to 123;
1. (INT) is a type conversion. When we convert the NT type to the long, float, double, decimal type, we can use implicit conversion, however, Explicit conversions are required from the long type to the int type. Otherwise, a compilation error occurs.
2. Int. parse () is a type of capacity conversion. It indicates converting the numeric content string to the int type.
If the string is null, an argumentnullexception exception is thrown;
If the string content is not a number, a formatexception is thrown;
Overflowexception is thrown if the number indicated by the string content exceeds the range indicated by the int type;
3. Int. tryparse is similar to int. parse, but it does not produce exceptions. If the conversion is successful, true is returned. If the conversion fails, false is returned.
The last parameter is the output value. If the conversion fails, the output value is 0. If the conversion is successful, the output value is the converted int value.
4. Convert. toint32 () is a type-tolerant conversion, but it is not limited to converting a string to the int type, or it can be another type of parameter;
Comparison: If the convert. toint32 parameter is null, 0 is returned; if the Int. parse parameter is null, an exception is thrown. If the convert. toint32 parameter is "", an exception is thrown. If the Int. parse parameter is "", an exception is thrown. Convert. toint32 can be converted to many types. Int. parse can only be converted to numeric strings.