Converts the string representation of a number in a specified culture-specific format to its 64-bit signed integer equivalent.
A 64-bit signed integer equivalent to the number specified in s.
Type Reason ArgumentNullException s is a null reference. FormatException s is not in the correct style. OverflowException s represents a number greater than long.MaxValue or less than long.MinValue.
This overload of the long.Parse(string, IFormatProvider) method is typically used to convert text that can be formatted in a variety of ways to an long value. For example, it can be used to convert the text entered by a user into an HTML text box to a numeric value.
The s parameter contains a number of the form:
[ws][sign]digits[ws]
Items in square brackets ([ and ]) are optional, and other items are as follows.
ws |
An optional white space. |
sign |
An optional sign. |
digits |
A sequence of digits ranging from 0 to 9. |
The s parameter is interpreted using the System.Globalization.NumberStyles.Integer style. In addition to decimal digits, only leading and trailing spaces together with a leading sign are allowed. To explicitly define the style elements that can be present in s, use the long.Parse(string, System.Globalization.NumberStyles, IFormatProvider) method.
The provider parameter is an IFormatProvider implementation, such as a System.Globalization.NumberFormatInfo or System.Globalization.CultureInfo object. The provider parameter supplies culture-specific information about the format of s. If provider is null, the System.Globalization.NumberFormatInfo for the current culture is used.