Click or drag to resize

HalfTypeParse Method (String)

Converts the string representation of a number to its System.Half equivalent.

Namespace:  NeoAxis
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
public static HalfType Parse(
	string value
)

Parameters

value
Type: SystemString
The string representation of the number to convert.

Return Value

Type: HalfType
The System.Half number equivalent to the number contained in value.
Exceptions
ExceptionCondition
ArgumentNullExceptionvalue is null.
FormatExceptionvalue is not in the correct format.
OverflowExceptionvalue represents a number less than System.Half.MinValue or greater than System.Half.MaxValue.
See Also