Int16Parse Method (String, NumberStyles, IFormatProvider) |
Converts the string representation of a number in a specified style and culture-specific format to its 16-bit signed integer equivalent.
Namespace: SystemAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax public static short Parse(
string s,
NumberStyles style,
IFormatProvider provider
)
Parameters
- s
- Type: SystemString
A string containing a number to convert. - style
- Type: System.GlobalizationNumberStyles
A bitwise combination of enumeration values that indicates the style elements that can be present in s. A typical value to specify is Integer. - provider
- Type: SystemIFormatProvider
An IFormatProvider that supplies culture-specific formatting information about s.
Return Value
Type:
Int16A 16-bit signed integer equivalent to the number specified in
s.
Exceptions Exception | Condition |
---|
ArgumentNullException | s is null. |
ArgumentException | style is not a NumberStyles value. -or-style is not a combination of AllowHexSpecifier and HexNumber values. |
FormatException | s is not in a format compliant with style. |
OverflowException | s represents a number less than MinValue or greater than MaxValue. -or-s includes non-zero fractional digits. |
See Also