INumberBase<TSelf>.TryParse Metodo

Definizione

Overload

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

Tenta di analizzare un intervallo di caratteri UTF-8 in un valore.

TryParse(String, NumberStyles, IFormatProvider, TSelf)

Tenta di analizzare una stringa in un valore.

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

Tenta di analizzare un intervallo di caratteri in un valore.

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

Origine:
INumberBase.cs
Origine:
INumberBase.cs

Tenta di analizzare un intervallo di caratteri UTF-8 in un valore.

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

Parametri

utf8Text
ReadOnlySpan<Byte>

Intervallo di caratteri UTF-8 da analizzare.

style
NumberStyles

Combinazione bit per bit di stili numerici che possono essere presenti in utf8Text.

provider
IFormatProvider

Oggetto che fornisce informazioni di formattazione specifiche delle impostazioni cultura relative a utf8Text.

result
TSelf

In caso di restituzione, contiene il risultato dell'analisi utf8Text corretta o di un valore non definito in caso di errore.

Restituisce

true se utf8Text è stato analizzato correttamente; in caso contrario, false.

Eccezioni

style non è un valore supportato NumberStyles .

Si applica a

TryParse(String, NumberStyles, IFormatProvider, TSelf)

Origine:
INumberBase.cs
Origine:
INumberBase.cs
Origine:
INumberBase.cs

Tenta di analizzare una stringa in un valore.

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

Parametri

s
String

Stringa da analizzare.

style
NumberStyles

Combinazione bit per bit di stili numerici che possono essere presenti in s.

provider
IFormatProvider

Oggetto che fornisce informazioni di formattazione specifiche delle impostazioni cultura relative a s.

result
TSelf

In caso di restituzione, contiene il risultato dell'analisi s corretta o di un valore non definito in caso di errore.

Restituisce

true se s è stato analizzato correttamente; in caso contrario, false.

Eccezioni

style non è un valore supportato NumberStyles .

Si applica a

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

Origine:
INumberBase.cs
Origine:
INumberBase.cs
Origine:
INumberBase.cs

Tenta di analizzare un intervallo di caratteri in un valore.

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

Parametri

s
ReadOnlySpan<Char>

Intervallo di caratteri da analizzare.

style
NumberStyles

Combinazione bit per bit di stili numerici che possono essere presenti in s.

provider
IFormatProvider

Oggetto che fornisce informazioni di formattazione specifiche delle impostazioni cultura relative a s.

result
TSelf

In caso di restituzione, contiene il risultato dell'analisi s corretta o di un valore non definito in caso di errore.

Restituisce

true se s è stato analizzato correttamente; in caso contrario, false.

Eccezioni

style non è un valore supportato NumberStyles .

Si applica a