Half.TryParse Method

Definition

Overloads

TryParse(ReadOnlySpan<Byte>, Half)

Tries to convert a UTF-8 character span containing the string representation of a number to its half-precision floating-point number equivalent.

TryParse(ReadOnlySpan<Char>, Half)

Converts the span representation of a number to its half-precision floating-point number equivalent. A return value indicates whether the conversion succeeded or failed.

TryParse(String, Half)

Converts the string representation of a number to its half-precision floating-point number equivalent. A return value indicates whether the conversion succeeded or failed.

TryParse(ReadOnlySpan<Byte>, IFormatProvider, Half)

Tries to parse a span of UTF-8 characters into a value.

TryParse(ReadOnlySpan<Char>, IFormatProvider, Half)

Tries to parse a span of characters into a value.

TryParse(String, IFormatProvider, Half)

Tries to parse a string into a value.

TryParse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider, Half)

Tries to parse a span of UTF-8 characters into a value.

TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, Half)

Converts the span representation of a number to its half-precision floating-point number equivalent. A return value indicates whether the conversion succeeded or failed.

TryParse(String, NumberStyles, IFormatProvider, Half)

Converts the string representation of a number to its half-precision floating-point number equivalent. A return value indicates whether the conversion succeeded or failed.

TryParse(ReadOnlySpan<Byte>, Half)

Source:
Half.cs
Source:
Half.cs

Tries to convert a UTF-8 character span containing the string representation of a number to its half-precision floating-point number equivalent.

public:
 static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, [Runtime::InteropServices::Out] Half % result);
public static bool TryParse (ReadOnlySpan<byte> utf8Text, out Half result);
static member TryParse : ReadOnlySpan<byte> * Half -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), ByRef result As Half) As Boolean

Parameters

utf8Text
ReadOnlySpan<Byte>

A read-only UTF-8 character span that contains the number to convert.

result
Half

When this method returns, contains a half-precision floating-point number equivalent of the numeric value or symbol contained in utf8Text if the conversion succeeded or zero if the conversion failed. The conversion fails if the utf8Text is Empty or is not in a valid format. This parameter is passed uninitialized; any value originally supplied in result will be overwritten.

Returns

true if utf8Text was converted successfully; otherwise, false.

Applies to

TryParse(ReadOnlySpan<Char>, Half)

Source:
Half.cs
Source:
Half.cs
Source:
Half.cs

Converts the span representation of a number to its half-precision floating-point number equivalent. A return value indicates whether the conversion succeeded or failed.

public:
 static bool TryParse(ReadOnlySpan<char> s, [Runtime::InteropServices::Out] Half % result);
public static bool TryParse (ReadOnlySpan<char> s, out Half result);
static member TryParse : ReadOnlySpan<char> * Half -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), ByRef result As Half) As Boolean

Parameters

s
ReadOnlySpan<Char>

A read-only span that contains a number to convert.

result
Half

When this method returns, contains the half-precision floating-point number equivalent to the numeric value or symbol contained in s, if the conversion succeeded, or a default Half value if the conversion failed. The conversion fails if the s parameter is null or Empty or is not a number in a valid format. If s is a valid number less than MinValue, result contains NegativeInfinity. If s is a valid number greater than MaxValue, result contains PositiveInfinity. This parameter is treated as uninitialized.

Returns

true if s was converted successfully, false otherwise.

Applies to

TryParse(String, Half)

Source:
Half.cs
Source:
Half.cs
Source:
Half.cs

Converts the string representation of a number to its half-precision floating-point number equivalent. A return value indicates whether the conversion succeeded or failed.

public:
 static bool TryParse(System::String ^ s, [Runtime::InteropServices::Out] Half % result);
public static bool TryParse (string? s, out Half result);
static member TryParse : string * Half -> bool
Public Shared Function TryParse (s As String, ByRef result As Half) As Boolean

Parameters

s
String

A string that contains a number to convert.

result
Half

When this method returns, contains the half-precision floating-point number equivalent to the numeric value or symbol contained in s, if the conversion succeeded, or a default Half value if the conversion failed. The conversion fails if s is null or Empty or is not a number in a valid format. If s is a valid number less than MinValue, result contains NegativeInfinity. If s is a valid number greater than MaxValue, result contains PositiveInfinity. This parameter is treated as uninitialized.

Returns

true if the conversion was successful; otherwise, false.

Applies to

TryParse(ReadOnlySpan<Byte>, IFormatProvider, Half)

Source:
Half.cs
Source:
Half.cs

Tries to parse a span of UTF-8 characters into a value.

public:
 static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, IFormatProvider ^ provider, [Runtime::InteropServices::Out] Half % result) = IUtf8SpanParsable<Half>::TryParse;
public static bool TryParse (ReadOnlySpan<byte> utf8Text, IFormatProvider? provider, out Half result);
static member TryParse : ReadOnlySpan<byte> * IFormatProvider * Half -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), provider As IFormatProvider, ByRef result As Half) As Boolean

Parameters

utf8Text
ReadOnlySpan<Byte>

The span of UTF-8 characters to parse.

provider
IFormatProvider

An object that provides culture-specific formatting information about utf8Text.

result
Half

On return, contains the result of successfully parsing utf8Text or an undefined value on failure.

Returns

true if utf8Text was successfully parsed; otherwise, false.

Applies to

TryParse(ReadOnlySpan<Char>, IFormatProvider, Half)

Source:
Half.cs
Source:
Half.cs
Source:
Half.cs

Tries to parse a span of characters into a value.

public:
 static bool TryParse(ReadOnlySpan<char> s, IFormatProvider ^ provider, [Runtime::InteropServices::Out] Half % result) = ISpanParsable<Half>::TryParse;
public static bool TryParse (ReadOnlySpan<char> s, IFormatProvider? provider, out Half result);
static member TryParse : ReadOnlySpan<char> * IFormatProvider * Half -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), provider As IFormatProvider, ByRef result As Half) As Boolean

Parameters

s
ReadOnlySpan<Char>

The span of characters to parse.

provider
IFormatProvider

An object that provides culture-specific formatting information about s.

result
Half

When this method returns, contains the result of successfully parsing s, or an undefined value on failure.

Returns

true if s was successfully parsed; otherwise, false.

Applies to

TryParse(String, IFormatProvider, Half)

Source:
Half.cs
Source:
Half.cs
Source:
Half.cs

Tries to parse a string into a value.

public:
 static bool TryParse(System::String ^ s, IFormatProvider ^ provider, [Runtime::InteropServices::Out] Half % result) = IParsable<Half>::TryParse;
public static bool TryParse (string? s, IFormatProvider? provider, out Half result);
static member TryParse : string * IFormatProvider * Half -> bool
Public Shared Function TryParse (s As String, provider As IFormatProvider, ByRef result As Half) As Boolean

Parameters

s
String

The string to parse.

provider
IFormatProvider

An object that provides culture-specific formatting information about s.

result
Half

When this method returns, contains the result of successfully parsing s or an undefined value on failure.

Returns

true if s was successfully parsed; otherwise, false.

Applies to

TryParse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider, Half)

Source:
Half.cs
Source:
Half.cs

Tries to parse a span of UTF-8 characters into a value.

public:
 static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] Half % result) = System::Numerics::INumberBase<Half>::TryParse;
public static bool TryParse (ReadOnlySpan<byte> utf8Text, System.Globalization.NumberStyles style, IFormatProvider? provider, out Half result);
static member TryParse : ReadOnlySpan<byte> * System.Globalization.NumberStyles * IFormatProvider * Half -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), style As NumberStyles, provider As IFormatProvider, ByRef result As Half) As Boolean

Parameters

utf8Text
ReadOnlySpan<Byte>

The span of UTF-8 characters to parse.

style
NumberStyles

A bitwise combination of number styles that can be present in utf8Text.

provider
IFormatProvider

An object that provides culture-specific formatting information about utf8Text.

result
Half

On return, contains the result of successfully parsing utf8Text or an undefined value on failure.

Returns

true if utf8Text was successfully parsed; otherwise, false.

Applies to

TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, Half)

Source:
Half.cs
Source:
Half.cs
Source:
Half.cs

Converts the span representation of a number to its half-precision floating-point number equivalent. A return value indicates whether the conversion succeeded or failed.

public:
 static bool TryParse(ReadOnlySpan<char> s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] Half % result);
public:
 static bool TryParse(ReadOnlySpan<char> s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] Half % result) = System::Numerics::INumberBase<Half>::TryParse;
public static bool TryParse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider? provider, out Half result);
static member TryParse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider * Half -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), style As NumberStyles, provider As IFormatProvider, ByRef result As Half) As Boolean

Parameters

s
ReadOnlySpan<Char>

A read-only span that contains a number to convert.

style
NumberStyles

A bitwise combination of enumeration values that indicates the permitted format of s.

provider
IFormatProvider

An object that supplies culture-specific formatting information about s.

result
Half

When this method returns, contains the half-precision floating-point number equivalent to the numeric value or symbol contained in s, if the conversion succeeded, or a default Half value if the conversion failed. The conversion fails if s is not a number in a valid format. If s is a valid number less than MinValue, result contains NegativeInfinity. If s is a valid number greater than MaxValue, result contains PositiveInfinity. This parameter is treated as uninitialized.

Returns

true if the conversion was successful; otherwise, false.

Exceptions

style is not a NumberStyles value.

-or-

NumberStyles is the AllowHexSpecifier value.

Applies to

TryParse(String, NumberStyles, IFormatProvider, Half)

Source:
Half.cs
Source:
Half.cs
Source:
Half.cs

Converts the string representation of a number to its half-precision floating-point number equivalent. A return value indicates whether the conversion succeeded or failed.

public:
 static bool TryParse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] Half % result);
public:
 static bool TryParse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] Half % result) = System::Numerics::INumberBase<Half>::TryParse;
public static bool TryParse (string? s, System.Globalization.NumberStyles style, IFormatProvider? provider, out Half result);
static member TryParse : string * System.Globalization.NumberStyles * IFormatProvider * Half -> bool
Public Shared Function TryParse (s As String, style As NumberStyles, provider As IFormatProvider, ByRef result As Half) As Boolean

Parameters

s
String

A string that contains a number to convert.

style
NumberStyles

A bitwise combination of enumeration values that indicates the permitted format of s.

provider
IFormatProvider

An object that supplies culture-specific formatting information about s.

result
Half

When this method returns, contains the half-precision floating-point number equivalent to the numeric value or symbol contained in s, if the conversion succeeded, or a default Half value if the conversion failed. The conversion fails if s is null or Empty or is not a number in a valid format. If s is a valid number less than MinValue, result contains NegativeInfinity. If s is a valid number greater than MaxValue, result contains PositiveInfinity. This parameter is treated as uninitialized.

Returns

true if the conversion was successful; otherwise, false.

Exceptions

style is not a NumberStyles value.

-or-

NumberStyles is the AllowHexSpecifier value.

Applies to