Parses an Int32 from a String.
[Visual Basic] Public Shared Function FromString( _ ByVal s As String _ ) As Integer [C#] public static int FromString( string s ); [C++] public: static int FromString( String* s ); [JScript] public static function FromString( s : String ) : int;
The Int32 value of the string.
The Int32 method returns a signed int from parsing a string. The default (locale-neutral) NumberFormatInfo is used (see NumberFormatInfo or CultureInfo for more information on numeric and culture formats).
Use Parse and Format for locale dependent strings.
The output from ToString should be consumable by FromString().