UInt128.Parse Methode
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Overloads
| Name | Description |
|---|---|
| Parse(String) |
Parseert een tekenreeks in een waarde. |
| Parse(ReadOnlySpan<Byte>, IFormatProvider) |
Parseert een reeks UTF-8 tekens in een waarde. |
| Parse(ReadOnlySpan<Char>, IFormatProvider) |
Parseert een reeks tekens in een waarde. |
| Parse(String, NumberStyles) |
Parseert een tekenreeks in een waarde. |
| Parse(String, IFormatProvider) |
Parseert een tekenreeks in een waarde. |
| Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider) |
Parseert een reeks UTF-8 tekens in een waarde. |
| Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider) |
Parseert een reeks tekens in een waarde. |
| Parse(String, NumberStyles, IFormatProvider) |
Parseert een tekenreeks in een waarde. |
Parse(String)
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
Parseert een tekenreeks in een waarde.
public:
static UInt128 Parse(System::String ^ s);
public static UInt128 Parse(string s);
static member Parse : string -> UInt128
Public Shared Function Parse (s As String) As UInt128
Parameters
- s
- String
Een tekenreeks die een getal bevat dat moet worden geparseerd.
Retouren
Het resultaat van parseren s.
Van toepassing op
Parse(ReadOnlySpan<Byte>, IFormatProvider)
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
Parseert een reeks UTF-8 tekens in een waarde.
public:
static UInt128 Parse(ReadOnlySpan<System::Byte> utf8Text, IFormatProvider ^ provider) = IUtf8SpanParsable<UInt128>::Parse;
public static UInt128 Parse(ReadOnlySpan<byte> utf8Text, IFormatProvider? provider);
static member Parse : ReadOnlySpan<byte> * IFormatProvider -> UInt128
Public Shared Function Parse (utf8Text As ReadOnlySpan(Of Byte), provider As IFormatProvider) As UInt128
Parameters
- utf8Text
- ReadOnlySpan<Byte>
Het bereik van UTF-8 tekens om te parseren.
- provider
- IFormatProvider
Een object dat cultuurspecifieke opmaakinformatie biedt over utf8Text.
Retouren
Het resultaat van parseren utf8Text.
Implementeringen
Van toepassing op
Parse(ReadOnlySpan<Char>, IFormatProvider)
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
Parseert een reeks tekens in een waarde.
public:
static UInt128 Parse(ReadOnlySpan<char> s, IFormatProvider ^ provider) = ISpanParsable<UInt128>::Parse;
public static UInt128 Parse(ReadOnlySpan<char> s, IFormatProvider? provider);
static member Parse : ReadOnlySpan<char> * IFormatProvider -> UInt128
Public Shared Function Parse (s As ReadOnlySpan(Of Char), provider As IFormatProvider) As UInt128
Parameters
- s
- ReadOnlySpan<Char>
De reeks tekens die moeten worden geparseerd.
- provider
- IFormatProvider
Een object dat cultuurspecifieke opmaakinformatie biedt over s.
Retouren
Het resultaat van parseren s.
Implementeringen
Van toepassing op
Parse(String, NumberStyles)
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
Parseert een tekenreeks in een waarde.
public:
static UInt128 Parse(System::String ^ s, System::Globalization::NumberStyles style);
public static UInt128 Parse(string s, System.Globalization.NumberStyles style);
static member Parse : string * System.Globalization.NumberStyles -> UInt128
Public Shared Function Parse (s As String, style As NumberStyles) As UInt128
Parameters
- s
- String
Een tekenreeks die een getal bevat dat moet worden geparseerd.
- style
- NumberStyles
Een bitsgewijze combinatie van getalstijlen die aanwezig kunnen zijn in s.
Retouren
Het resultaat van parseren s.
Van toepassing op
Parse(String, IFormatProvider)
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
Parseert een tekenreeks in een waarde.
public:
static UInt128 Parse(System::String ^ s, IFormatProvider ^ provider) = IParsable<UInt128>::Parse;
public static UInt128 Parse(string s, IFormatProvider? provider);
static member Parse : string * IFormatProvider -> UInt128
Public Shared Function Parse (s As String, provider As IFormatProvider) As UInt128
Parameters
- s
- String
De tekenreeks die moet worden geparseerd.
- provider
- IFormatProvider
Een object dat cultuurspecifieke opmaakinformatie biedt over s.
Retouren
Het resultaat van parseren s.
Implementeringen
Van toepassing op
Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider)
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
Parseert een reeks UTF-8 tekens in een waarde.
public static UInt128 Parse(ReadOnlySpan<byte> utf8Text, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, IFormatProvider? provider = default);
static member Parse : ReadOnlySpan<byte> * System.Globalization.NumberStyles * IFormatProvider -> UInt128
Public Shared Function Parse (utf8Text As ReadOnlySpan(Of Byte), Optional style As NumberStyles = System.Globalization.NumberStyles.Integer, Optional provider As IFormatProvider = Nothing) As UInt128
Parameters
- utf8Text
- ReadOnlySpan<Byte>
Het bereik van UTF-8 tekens om te parseren.
- style
- NumberStyles
Een bitsgewijze combinatie van getalstijlen die aanwezig kunnen zijn in utf8Text.
- provider
- IFormatProvider
Een object dat cultuurspecifieke opmaakinformatie biedt over utf8Text.
Retouren
Het resultaat van parseren utf8Text.
Implementeringen
Van toepassing op
Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider)
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
Parseert een reeks tekens in een waarde.
public static UInt128 Parse(ReadOnlySpan<char> s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, IFormatProvider? provider = default);
static member Parse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider -> UInt128
Public Shared Function Parse (s As ReadOnlySpan(Of Char), Optional style As NumberStyles = System.Globalization.NumberStyles.Integer, Optional provider As IFormatProvider = Nothing) As UInt128
Parameters
- s
- ReadOnlySpan<Char>
De reeks tekens die moeten worden geparseerd.
- style
- NumberStyles
Een bitsgewijze combinatie van getalstijlen die aanwezig kunnen zijn in s.
- provider
- IFormatProvider
Een object dat cultuurspecifieke opmaakinformatie biedt over s.
Retouren
Het resultaat van parseren s.
Implementeringen
Van toepassing op
Parse(String, NumberStyles, IFormatProvider)
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
- Bron:
- UInt128.cs
Parseert een tekenreeks in een waarde.
public:
static UInt128 Parse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider) = System::Numerics::INumberBase<UInt128>::Parse;
public static UInt128 Parse(string s, System.Globalization.NumberStyles style, IFormatProvider? provider);
static member Parse : string * System.Globalization.NumberStyles * IFormatProvider -> UInt128
Public Shared Function Parse (s As String, style As NumberStyles, provider As IFormatProvider) As UInt128
Parameters
- s
- String
De tekenreeks die moet worden geparseerd.
- style
- NumberStyles
Een bitsgewijze combinatie van getalstijlen die aanwezig kunnen zijn in s.
- provider
- IFormatProvider
Een object dat cultuurspecifieke opmaakinformatie biedt over s.
Retouren
Het resultaat van parseren s.