NFloat.TryParse 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, NFloat) |
지정된 스타일 및 문화권별 형식의 숫자 문자열 표현이 포함된 문자 범위를 해당하는 부동 소수점 숫자로 변환하려고 시도합니다. |
TryParse(ReadOnlySpan<Byte>, NFloat) |
숫자의 문자열 표현을 포함하는 UTF-8 문자 범위를 해당하는 부동 소수점 숫자로 변환하려고 시도합니다. |
TryParse(ReadOnlySpan<Char>, NFloat) |
숫자의 문자열 표현을 포함하는 문자 범위를 해당하는 부동 소수점 숫자로 변환하려고 시도합니다. |
TryParse(String, NFloat) |
숫자의 문자열 표현을 해당하는 부동 소수점 숫자로 변환하려고 시도합니다. |
TryParse(ReadOnlySpan<Byte>, IFormatProvider, NFloat) |
UTF-8 문자의 범위를 값으로 구문 분석하려고 시도합니다. |
TryParse(ReadOnlySpan<Char>, IFormatProvider, NFloat) |
문자 범위를 값으로 구문 분석하려고 시도합니다. |
TryParse(String, IFormatProvider, NFloat) |
문자열을 값으로 구문 분석하려고 시도합니다. |
TryParse(String, NumberStyles, IFormatProvider, NFloat) |
지정된 스타일 및 문화권별 형식의 숫자 문자열 표현을 해당하는 부동 소수점 숫자로 변환하려고 시도합니다. |
TryParse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider, NFloat) |
UTF-8 문자의 범위를 값으로 구문 분석하려고 시도합니다. |
TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, NFloat)
- Source:
- NFloat.cs
- Source:
- NFloat.cs
- Source:
- NFloat.cs
지정된 스타일 및 문화권별 형식의 숫자 문자열 표현이 포함된 문자 범위를 해당하는 부동 소수점 숫자로 변환하려고 시도합니다.
public:
static bool TryParse(ReadOnlySpan<char> s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::Runtime::InteropServices::NFloat % result) = System::Numerics::INumberBase<System::Runtime::InteropServices::NFloat>::TryParse;
public static bool TryParse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider? provider, out System.Runtime.InteropServices.NFloat result);
static member TryParse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider * NFloat -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), style As NumberStyles, provider As IFormatProvider, ByRef result As NFloat) As Boolean
매개 변수
- s
- ReadOnlySpan<Char>
변환할 숫자를 포함하는 읽기 전용 문자 범위입니다.
- style
- NumberStyles
s
있을 수 있는 스타일 요소를 나타내는 열거형 값의 비트 조합입니다.
- provider
- IFormatProvider
s
대한 문화권별 서식 정보를 제공하는 개체입니다.
- result
- NFloat
이 메서드가 반환될 때 변환에 성공한 경우 s
포함된 숫자 값 또는 기호에 해당하는 부동 소수점 숫자를 포함하거나 변환에 실패한 경우 0을 포함합니다.
s
Empty 있거나 style
호환되는 형식이 아니거나 style
NumberStyles 열거형 상수의 유효한 조합이 아닌 경우 변환이 실패합니다. 이 매개 변수는 초기화되지 않은 상태로 전달됩니다. 결과에서 원래 제공된 모든 값을 덮어씁니다.
반환
s
성공적으로 변환되었는지 true
. 그렇지 않으면 false
.
예외
적용 대상
TryParse(ReadOnlySpan<Byte>, NFloat)
- Source:
- NFloat.cs
- Source:
- NFloat.cs
숫자의 문자열 표현을 포함하는 UTF-8 문자 범위를 해당하는 부동 소수점 숫자로 변환하려고 시도합니다.
public:
static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, [Runtime::InteropServices::Out] System::Runtime::InteropServices::NFloat % result);
public static bool TryParse (ReadOnlySpan<byte> utf8Text, out System.Runtime.InteropServices.NFloat result);
static member TryParse : ReadOnlySpan<byte> * NFloat -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), ByRef result As NFloat) As Boolean
매개 변수
- utf8Text
- ReadOnlySpan<Byte>
변환할 숫자를 포함하는 읽기 전용 UTF-8 문자 범위입니다.
- result
- NFloat
이 메서드가 반환될 때 변환에 성공한 경우 utf8Text
포함된 숫자 값 또는 기호에 해당하는 부동 소수점 숫자를 포함하거나 변환에 실패한 경우 0을 포함합니다.
utf8Text
Empty 유효한 형식이 아니면 변환이 실패합니다. 이 매개 변수는 초기화되지 않은 상태로 전달됩니다. 결과에서 원래 제공된 모든 값을 덮어씁니다.
반환
utf8Text
성공적으로 변환되었는지 true
. 그렇지 않으면 false
.
적용 대상
TryParse(ReadOnlySpan<Char>, NFloat)
- Source:
- NFloat.cs
- Source:
- NFloat.cs
- Source:
- NFloat.cs
숫자의 문자열 표현을 포함하는 문자 범위를 해당하는 부동 소수점 숫자로 변환하려고 시도합니다.
public:
static bool TryParse(ReadOnlySpan<char> s, [Runtime::InteropServices::Out] System::Runtime::InteropServices::NFloat % result);
public static bool TryParse (ReadOnlySpan<char> s, out System.Runtime.InteropServices.NFloat result);
static member TryParse : ReadOnlySpan<char> * NFloat -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), ByRef result As NFloat) As Boolean
매개 변수
- s
- ReadOnlySpan<Char>
변환할 숫자를 포함하는 읽기 전용 문자 범위입니다.
- result
- NFloat
이 메서드가 반환될 때 변환에 성공한 경우 s
포함된 숫자 값 또는 기호에 해당하는 부동 소수점 숫자를 포함하거나 변환에 실패한 경우 0을 포함합니다.
s
Empty 유효한 형식이 아니면 변환이 실패합니다. 이 매개 변수는 초기화되지 않은 상태로 전달됩니다. 결과에서 원래 제공된 모든 값을 덮어씁니다.
반환
s
성공적으로 변환되었는지 true
. 그렇지 않으면 false
.
적용 대상
TryParse(String, NFloat)
- Source:
- NFloat.cs
- Source:
- NFloat.cs
- Source:
- NFloat.cs
숫자의 문자열 표현을 해당하는 부동 소수점 숫자로 변환하려고 시도합니다.
public:
static bool TryParse(System::String ^ s, [Runtime::InteropServices::Out] System::Runtime::InteropServices::NFloat % result);
public static bool TryParse (string? s, out System.Runtime.InteropServices.NFloat result);
static member TryParse : string * NFloat -> bool
Public Shared Function TryParse (s As String, ByRef result As NFloat) As Boolean
매개 변수
- s
- String
변환할 숫자를 포함하는 읽기 전용 문자 범위입니다.
- result
- NFloat
이 메서드가 반환될 때 변환에 성공한 경우 s
포함된 숫자 값 또는 기호에 해당하는 부동 소수점 숫자를 포함하거나 변환에 실패한 경우 0을 포함합니다.
s
null
, Empty또는 유효한 형식이 아니면 변환이 실패합니다. 이 매개 변수는 초기화되지 않은 상태로 전달됩니다. 결과에서 원래 제공된 모든 값을 덮어씁니다.
반환
s
성공적으로 변환되었는지 true
. 그렇지 않으면 false
.
적용 대상
TryParse(ReadOnlySpan<Byte>, IFormatProvider, NFloat)
- Source:
- NFloat.cs
- Source:
- NFloat.cs
UTF-8 문자의 범위를 값으로 구문 분석하려고 시도합니다.
public:
static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::Runtime::InteropServices::NFloat % result) = IUtf8SpanParsable<System::Runtime::InteropServices::NFloat>::TryParse;
public static bool TryParse (ReadOnlySpan<byte> utf8Text, IFormatProvider? provider, out System.Runtime.InteropServices.NFloat result);
static member TryParse : ReadOnlySpan<byte> * IFormatProvider * NFloat -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), provider As IFormatProvider, ByRef result As NFloat) As Boolean
매개 변수
- utf8Text
- ReadOnlySpan<Byte>
구문 분석할 UTF-8 문자의 범위입니다.
- provider
- IFormatProvider
utf8Text
대한 문화권별 서식 정보를 제공하는 개체입니다.
- result
- NFloat
반환되는 경우 utf8Text
성공적으로 구문 분석한 결과 또는 실패에 대해 정의되지 않은 값이 포함됩니다.
반환
utf8Text
성공적으로 구문 분석되었는지 true
. 그렇지 않으면 false
.
적용 대상
TryParse(ReadOnlySpan<Char>, IFormatProvider, NFloat)
- Source:
- NFloat.cs
- Source:
- NFloat.cs
- Source:
- NFloat.cs
문자 범위를 값으로 구문 분석하려고 시도합니다.
public:
static bool TryParse(ReadOnlySpan<char> s, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::Runtime::InteropServices::NFloat % result) = ISpanParsable<System::Runtime::InteropServices::NFloat>::TryParse;
public static bool TryParse (ReadOnlySpan<char> s, IFormatProvider? provider, out System.Runtime.InteropServices.NFloat result);
static member TryParse : ReadOnlySpan<char> * IFormatProvider * NFloat -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), provider As IFormatProvider, ByRef result As NFloat) As Boolean
매개 변수
- s
- ReadOnlySpan<Char>
구문 분석할 문자의 범위입니다.
- provider
- IFormatProvider
s
대한 문화권별 서식 정보를 제공하는 개체입니다.
- result
- NFloat
이 메서드가 반환될 때 s
성공적으로 구문 분석한 결과 또는 실패 시 정의되지 않은 값이 포함됩니다.
반환
s
성공적으로 구문 분석되었는지 true
. 그렇지 않으면 false
.
적용 대상
TryParse(String, IFormatProvider, NFloat)
- Source:
- NFloat.cs
- Source:
- NFloat.cs
- Source:
- NFloat.cs
문자열을 값으로 구문 분석하려고 시도합니다.
public:
static bool TryParse(System::String ^ s, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::Runtime::InteropServices::NFloat % result) = IParsable<System::Runtime::InteropServices::NFloat>::TryParse;
public static bool TryParse (string? s, IFormatProvider? provider, out System.Runtime.InteropServices.NFloat result);
static member TryParse : string * IFormatProvider * NFloat -> bool
Public Shared Function TryParse (s As String, provider As IFormatProvider, ByRef result As NFloat) As Boolean
매개 변수
- s
- String
구문 분석할 문자열입니다.
- provider
- IFormatProvider
s
대한 문화권별 서식 정보를 제공하는 개체입니다.
- result
- NFloat
이 메서드가 반환될 때 실패 시 s
성공적으로 구문 분석한 결과 또는 정의되지 않은 값이 포함됩니다.
반환
s
성공적으로 구문 분석되었는지 true
. 그렇지 않으면 false
.
적용 대상
TryParse(String, NumberStyles, IFormatProvider, NFloat)
- Source:
- NFloat.cs
- Source:
- NFloat.cs
- Source:
- NFloat.cs
지정된 스타일 및 문화권별 형식의 숫자 문자열 표현을 해당하는 부동 소수점 숫자로 변환하려고 시도합니다.
public:
static bool TryParse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::Runtime::InteropServices::NFloat % result) = System::Numerics::INumberBase<System::Runtime::InteropServices::NFloat>::TryParse;
public static bool TryParse (string? s, System.Globalization.NumberStyles style, IFormatProvider? provider, out System.Runtime.InteropServices.NFloat result);
static member TryParse : string * System.Globalization.NumberStyles * IFormatProvider * NFloat -> bool
Public Shared Function TryParse (s As String, style As NumberStyles, provider As IFormatProvider, ByRef result As NFloat) As Boolean
매개 변수
- s
- String
변환할 숫자를 포함하는 읽기 전용 문자 범위입니다.
- style
- NumberStyles
s
있을 수 있는 스타일 요소를 나타내는 열거형 값의 비트 조합입니다.
- provider
- IFormatProvider
s
대한 문화권별 서식 정보를 제공하는 개체입니다.
- result
- NFloat
이 메서드가 반환될 때 변환에 성공한 경우 s
포함된 숫자 값 또는 기호에 해당하는 부동 소수점 숫자를 포함하거나 변환에 실패한 경우 0을 포함합니다.
s
null
, Empty또는 style
준수하는 형식이 아니거나 style
NumberStyles 열거형 상수의 유효한 조합이 아닌 경우 변환이 실패합니다. 이 매개 변수는 초기화되지 않은 상태로 전달됩니다. 결과에서 원래 제공된 모든 값을 덮어씁니다.
반환
s
성공적으로 변환되었는지 true
. 그렇지 않으면 false
.
예외
적용 대상
TryParse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider, NFloat)
- Source:
- NFloat.cs
- Source:
- NFloat.cs
UTF-8 문자의 범위를 값으로 구문 분석하려고 시도합니다.
public:
static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::Runtime::InteropServices::NFloat % result) = System::Numerics::INumberBase<System::Runtime::InteropServices::NFloat>::TryParse;
public static bool TryParse (ReadOnlySpan<byte> utf8Text, System.Globalization.NumberStyles style, IFormatProvider? provider, out System.Runtime.InteropServices.NFloat result);
static member TryParse : ReadOnlySpan<byte> * System.Globalization.NumberStyles * IFormatProvider * NFloat -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), style As NumberStyles, provider As IFormatProvider, ByRef result As NFloat) As Boolean
매개 변수
- utf8Text
- ReadOnlySpan<Byte>
구문 분석할 UTF-8 문자의 범위입니다.
- style
- NumberStyles
utf8Text
있을 수 있는 숫자 스타일의 비트 조합입니다.
- provider
- IFormatProvider
utf8Text
대한 문화권별 서식 정보를 제공하는 개체입니다.
- result
- NFloat
반환되는 경우 utf8Text
성공적으로 구문 분석한 결과 또는 실패에 대해 정의되지 않은 값이 포함됩니다.
반환
utf8Text
성공적으로 구문 분석되었는지 true
. 그렇지 않으면 false
.
적용 대상
.NET