Click or drag to resize

UInt24Parse(String) Method

Converts the string representation of a number to its 24-bit unsigned integer equivalent.

Namespace: GSF
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.275-beta+5a507085c1b79f1427cd1812b9c3c9c583c21079
Syntax
public static UInt24 Parse(
	string s
)
View Source

Parameters

s  String
A string containing a number to convert.

Return Value

UInt24
A 24-bit unsigned integer equivalent to the number contained in s.
Exceptions
ExceptionCondition
ArgumentNullExceptions is null.
OverflowException s represents a number less than UInt24.MinValue or greater than UInt24.MaxValue.
FormatExceptions is not in the correct format.
See Also