UInt24TryParse(String, NumberStyles, IFormatProvider, UInt24) Method

Converts the string representation of a number in a specified style and culture-specific format to its 24-bit unsigned integer equivalent. A return value indicates whether the conversion succeeded or failed.

Definition

Namespace: Gemstone.Numeric
Assembly: Gemstone.Numeric (in Gemstone.Numeric.dll) Version: 1.0.110 -- Release Build+e3f505d56ee50c7e3fea40a20d129873a4fafd4c
public static bool TryParse(
	string s,
	NumberStyles style,
	IFormatProvider provider,
	out UInt24 result
)

Parameters

s  String
A string containing a number to convert.
style  NumberStyles
A bitwise combination of System.Globalization.NumberStyles values that indicates the permitted format of s. A typical value to specify is System.Globalization.NumberStyles.Integer.
provider  IFormatProvider
A IFormatProvider object that supplies culture-specific formatting information about s.
result  UInt24
When this method returns, contains the 24-bit unsigned integer value equivalent to the number contained in s, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the s parameter is null, is not in a format compliant with style, or represents a number less than UInt24.MinValue or greater than UInt24.MaxValue. This parameter is passed uninitialized.

Return Value

Boolean
true if s was converted successfully; otherwise, false.

Exceptions

ArgumentException style is not a System.Globalization.NumberStyles value. -or- style is not a combination of System.Globalization.NumberStyles.AllowHexSpecifier and System.Globalization.NumberStyles.HexNumber values.

See Also