Int128.Parse 메서드

정의

오버로드

Parse(String, NumberStyles, IFormatProvider)

문자열을 값으로 구문 분석합니다.

Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider)

문자 범위를 값으로 구문 분석합니다.

Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider)

UTF-8자의 범위를 값으로 구문 분석합니다.

Parse(String, IFormatProvider)

문자열을 값으로 구문 분석합니다.

Parse(ReadOnlySpan<Char>, IFormatProvider)

문자 범위를 값으로 구문 분석합니다.

Parse(ReadOnlySpan<Byte>, IFormatProvider)

UTF-8자의 범위를 값으로 구문 분석합니다.

Parse(String)

문자열을 값으로 구문 분석합니다.

Parse(String, NumberStyles)

문자열을 값으로 구문 분석합니다.

Parse(String, NumberStyles, IFormatProvider)

Source:
Int128.cs
Source:
Int128.cs
Source:
Int128.cs

문자열을 값으로 구문 분석합니다.

public:
 static Int128 Parse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider) = System::Numerics::INumberBase<Int128>::Parse;
public static Int128 Parse (string s, System.Globalization.NumberStyles style, IFormatProvider? provider);
static member Parse : string * System.Globalization.NumberStyles * IFormatProvider -> Int128
Public Shared Function Parse (s As String, style As NumberStyles, provider As IFormatProvider) As Int128

매개 변수

s
String

구문 분석할 문자열입니다.

style
NumberStyles

s있을 수 있는 숫자 스타일의 비트 조합입니다.

provider
IFormatProvider

s에 대한 문화권별 서식 정보를 제공하는 개체입니다.

반환

구문 분석의 결과입니다 s.

구현

적용 대상

Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider)

Source:
Int128.cs
Source:
Int128.cs
Source:
Int128.cs

문자 범위를 값으로 구문 분석합니다.

public static Int128 Parse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, IFormatProvider? provider = default);
static member Parse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider -> Int128
Public Shared Function Parse (s As ReadOnlySpan(Of Char), Optional style As NumberStyles = System.Globalization.NumberStyles.Integer, Optional provider As IFormatProvider = Nothing) As Int128

매개 변수

s
ReadOnlySpan<Char>

구문 분석할 문자의 범위입니다.

style
NumberStyles

s있을 수 있는 숫자 스타일의 비트 조합입니다.

provider
IFormatProvider

s에 대한 문화권별 서식 정보를 제공하는 개체입니다.

반환

구문 분석의 결과입니다 s.

구현

적용 대상

Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider)

Source:
Int128.cs
Source:
Int128.cs

UTF-8자의 범위를 값으로 구문 분석합니다.

public static Int128 Parse (ReadOnlySpan<byte> utf8Text, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, IFormatProvider? provider = default);
static member Parse : ReadOnlySpan<byte> * System.Globalization.NumberStyles * IFormatProvider -> Int128
Public Shared Function Parse (utf8Text As ReadOnlySpan(Of Byte), Optional style As NumberStyles = System.Globalization.NumberStyles.Integer, Optional provider As IFormatProvider = Nothing) As Int128

매개 변수

utf8Text
ReadOnlySpan<Byte>

구문 분석할 UTF-8 문자의 범위입니다.

style
NumberStyles

utf8Text있을 수 있는 숫자 스타일의 비트 조합입니다.

provider
IFormatProvider

utf8Text에 대한 문화권별 서식 정보를 제공하는 개체입니다.

반환

구문 분석의 결과입니다 utf8Text.

구현

적용 대상

Parse(String, IFormatProvider)

Source:
Int128.cs
Source:
Int128.cs
Source:
Int128.cs

문자열을 값으로 구문 분석합니다.

public:
 static Int128 Parse(System::String ^ s, IFormatProvider ^ provider) = IParsable<Int128>::Parse;
public static Int128 Parse (string s, IFormatProvider? provider);
static member Parse : string * IFormatProvider -> Int128
Public Shared Function Parse (s As String, provider As IFormatProvider) As Int128

매개 변수

s
String

구문 분석할 문자열입니다.

provider
IFormatProvider

s에 대한 문화권별 서식 정보를 제공하는 개체입니다.

반환

구문 분석의 결과입니다 s.

구현

적용 대상

Parse(ReadOnlySpan<Char>, IFormatProvider)

Source:
Int128.cs
Source:
Int128.cs
Source:
Int128.cs

문자 범위를 값으로 구문 분석합니다.

public:
 static Int128 Parse(ReadOnlySpan<char> s, IFormatProvider ^ provider) = ISpanParsable<Int128>::Parse;
public static Int128 Parse (ReadOnlySpan<char> s, IFormatProvider? provider);
static member Parse : ReadOnlySpan<char> * IFormatProvider -> Int128
Public Shared Function Parse (s As ReadOnlySpan(Of Char), provider As IFormatProvider) As Int128

매개 변수

s
ReadOnlySpan<Char>

구문 분석할 문자의 범위입니다.

provider
IFormatProvider

s에 대한 문화권별 서식 정보를 제공하는 개체입니다.

반환

구문 분석의 결과입니다 s.

구현

적용 대상

Parse(ReadOnlySpan<Byte>, IFormatProvider)

Source:
Int128.cs
Source:
Int128.cs

UTF-8자의 범위를 값으로 구문 분석합니다.

public:
 static Int128 Parse(ReadOnlySpan<System::Byte> utf8Text, IFormatProvider ^ provider) = IUtf8SpanParsable<Int128>::Parse;
public static Int128 Parse (ReadOnlySpan<byte> utf8Text, IFormatProvider? provider);
static member Parse : ReadOnlySpan<byte> * IFormatProvider -> Int128
Public Shared Function Parse (utf8Text As ReadOnlySpan(Of Byte), provider As IFormatProvider) As Int128

매개 변수

utf8Text
ReadOnlySpan<Byte>

구문 분석할 UTF-8 문자의 범위입니다.

provider
IFormatProvider

utf8Text에 대한 문화권별 서식 정보를 제공하는 개체입니다.

반환

구문 분석의 결과입니다 utf8Text.

구현

적용 대상

Parse(String)

Source:
Int128.cs
Source:
Int128.cs
Source:
Int128.cs

문자열을 값으로 구문 분석합니다.

public:
 static Int128 Parse(System::String ^ s);
public static Int128 Parse (string s);
static member Parse : string -> Int128
Public Shared Function Parse (s As String) As Int128

매개 변수

s
String

구문 분석할 숫자가 포함된 문자열입니다.

반환

구문 분석의 결과입니다 s.

적용 대상

Parse(String, NumberStyles)

Source:
Int128.cs
Source:
Int128.cs
Source:
Int128.cs

문자열을 값으로 구문 분석합니다.

public:
 static Int128 Parse(System::String ^ s, System::Globalization::NumberStyles style);
public static Int128 Parse (string s, System.Globalization.NumberStyles style);
static member Parse : string * System.Globalization.NumberStyles -> Int128
Public Shared Function Parse (s As String, style As NumberStyles) As Int128

매개 변수

s
String

구문 분석할 숫자가 포함된 문자열입니다.

style
NumberStyles

s있을 수 있는 숫자 스타일의 비트 조합입니다.

반환

구문 분석의 결과입니다 s.

적용 대상