INumberBase<TSelf>.Parse Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider) |
Analizza un intervallo di caratteri UTF-8 in un valore. |
Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider) |
Analizza un intervallo di caratteri in un valore. |
Parse(String, NumberStyles, IFormatProvider) |
Analizza una stringa in un valore. |
Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider)
- Origine:
- INumberBase.cs
- Origine:
- INumberBase.cs
Analizza un intervallo di caratteri UTF-8 in un valore.
public:
static override TSelf Parse(ReadOnlySpan<System::Byte> utf8Text, System::Globalization::NumberStyles style, IFormatProvider ^ provider);
public static virtual TSelf Parse (ReadOnlySpan<byte> utf8Text, System.Globalization.NumberStyles style, IFormatProvider? provider);
static member Parse : ReadOnlySpan<byte> * System.Globalization.NumberStyles * IFormatProvider -> 'Self
Public Shared Overrides Function Parse (utf8Text As ReadOnlySpan(Of Byte), style As NumberStyles, provider As IFormatProvider) As TSelf
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
.
Restituisce
Risultato dell'analisi utf8Text
di .
Eccezioni
style
non è un valore supportato NumberStyles .
Il formato di utf8Text
non è corretto.
utf8Text
non è rappresentabile da TSelf
.
Si applica a
Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider)
- Origine:
- INumberBase.cs
- Origine:
- INumberBase.cs
- Origine:
- INumberBase.cs
Analizza un intervallo di caratteri in un valore.
public:
static TSelf Parse(ReadOnlySpan<char> s, System::Globalization::NumberStyles style, IFormatProvider ^ provider);
public static abstract TSelf Parse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider? provider);
static member Parse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider -> 'Self
Public Shared Function Parse (s As ReadOnlySpan(Of Char), style As NumberStyles, provider As IFormatProvider) As TSelf
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
.
Restituisce
Risultato dell'analisi s
di .
Eccezioni
style
non è un valore supportato NumberStyles .
Il formato di s
non è corretto.
s
non è rappresentabile da TSelf
.
Si applica a
Parse(String, NumberStyles, IFormatProvider)
- Origine:
- INumberBase.cs
- Origine:
- INumberBase.cs
- Origine:
- INumberBase.cs
Analizza una stringa in un valore.
public:
static TSelf Parse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider);
public static abstract TSelf Parse (string s, System.Globalization.NumberStyles style, IFormatProvider? provider);
static member Parse : string * System.Globalization.NumberStyles * IFormatProvider -> 'Self
Public Shared Function Parse (s As String, style As NumberStyles, provider As IFormatProvider) As TSelf
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
.
Restituisce
Risultato dell'analisi s
di .
Eccezioni
style
non è un valore supportato NumberStyles .
s
è null
.
Il formato di s
non è corretto.
s
non è rappresentabile da TSelf
.