IntPtr.TryParse 方法

定义

重载

TryParse(ReadOnlySpan<Byte>, IntPtr)

尝试将包含数字字符串表示形式的 UTF-8 字符范围转换为其等效的带符号整数。

TryParse(ReadOnlySpan<Char>, IntPtr)

将数字的字符表示形式的只读范围转换为其等效的带符号本机整数。 返回值指示转换是否成功。

TryParse(String, IntPtr)

将数字的字符串表示形式转换为其等效的带符号本机整数。 返回值指示转换是否成功。

TryParse(ReadOnlySpan<Byte>, IFormatProvider, IntPtr)

尝试将 UTF-8 字符的范围分析为值。

TryParse(ReadOnlySpan<Char>, IFormatProvider, IntPtr)

尝试将字符串分析为值。

TryParse(String, IFormatProvider, IntPtr)

尝试将字符串分析为值。

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

尝试将 UTF-8 字符的范围分析为值。

TryParse(String, NumberStyles, IFormatProvider, IntPtr)

将指定样式和区域性特定格式的数字的字符串表示形式转换为其等效的带符号本机整数。 返回值指示转换是否成功。

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

将指定样式和区域性特定格式的数字的字符表示形式的只读范围转换为其等效的带符号本机整数。 返回值指示转换是否成功。

TryParse(ReadOnlySpan<Byte>, IntPtr)

Source:
IntPtr.cs
Source:
IntPtr.cs

尝试将包含数字字符串表示形式的 UTF-8 字符范围转换为其等效的带符号整数。

public:
 static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, [Runtime::InteropServices::Out] IntPtr % result);
public static bool TryParse (ReadOnlySpan<byte> utf8Text, out IntPtr result);
static member TryParse : ReadOnlySpan<byte> * nativeint -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), ByRef result As IntPtr) As Boolean

参数

utf8Text
ReadOnlySpan<Byte>

一个范围,包含表示要转换的数字的 UTF-8 字符。

result
IntPtr

nativeint

此方法返回时,包含与转换成功时 utf8Text 中包含的数字等效的有符号整数值;如果转换失败,则包含零。 此参数未初始化传递;将覆盖最初在结果中提供的任何值。

返回

如果已成功转换 utf8Text,则 true;否则,false

适用于

TryParse(ReadOnlySpan<Char>, IntPtr)

Source:
IntPtr.cs
Source:
IntPtr.cs
Source:
IntPtr.cs

将数字的字符表示形式的只读范围转换为其等效的带符号本机整数。 返回值指示转换是否成功。

public:
 static bool TryParse(ReadOnlySpan<char> s, [Runtime::InteropServices::Out] IntPtr % result);
public static bool TryParse (ReadOnlySpan<char> s, out IntPtr result);
static member TryParse : ReadOnlySpan<char> * nativeint -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), ByRef result As IntPtr) As Boolean

参数

s
ReadOnlySpan<Char>

包含要转换的数字的字符的只读范围。

result
IntPtr

nativeint

此方法返回时,如果转换成功,则包含与 s中包含的数字等效的有符号本机整数;如果转换失败,则包含零。 如果 s 参数为空、格式不正确或表示小于 MinValue 或大于 MaxValue的数字,则转换失败。 此参数未初始化传递;将覆盖最初在结果中提供的任何值。

返回

如果已成功转换 s,则 true;否则,false

适用于

TryParse(String, IntPtr)

Source:
IntPtr.cs
Source:
IntPtr.cs
Source:
IntPtr.cs

将数字的字符串表示形式转换为其等效的带符号本机整数。 返回值指示转换是否成功。

public:
 static bool TryParse(System::String ^ s, [Runtime::InteropServices::Out] IntPtr % result);
public static bool TryParse (string? s, out IntPtr result);
static member TryParse : string * nativeint -> bool
Public Shared Function TryParse (s As String, ByRef result As IntPtr) As Boolean

参数

s
String

包含要转换的数字的字符串。

result
IntPtr

nativeint

此方法返回时,如果转换成功,则包含与 s中包含的数字等效的有符号本机整数值;如果转换失败,则包含零。 如果 s 参数 null 或为空、格式不正确或表示小于 MinValue 或大于 MaxValue的数字,则转换失败。 此参数未初始化传递;将覆盖最初在结果中提供的任何值。

返回

如果已成功转换 s,则 true;否则,false

适用于

TryParse(ReadOnlySpan<Byte>, IFormatProvider, IntPtr)

Source:
IntPtr.cs
Source:
IntPtr.cs

尝试将 UTF-8 字符的范围分析为值。

public:
 static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, IFormatProvider ^ provider, [Runtime::InteropServices::Out] IntPtr % result) = IUtf8SpanParsable<IntPtr>::TryParse;
public static bool TryParse (ReadOnlySpan<byte> utf8Text, IFormatProvider? provider, out IntPtr result);
static member TryParse : ReadOnlySpan<byte> * IFormatProvider * nativeint -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), provider As IFormatProvider, ByRef result As IntPtr) As Boolean

参数

utf8Text
ReadOnlySpan<Byte>

要分析的 UTF-8 字符的范围。

provider
IFormatProvider

一个对象,提供有关 utf8Text的区域性特定格式设置信息。

result
IntPtr

nativeint

返回时,包含成功分析 utf8Text 或失败时未定义值的结果。

返回

如果已成功分析 utf8Text,则 true;否则,false

适用于

TryParse(ReadOnlySpan<Char>, IFormatProvider, IntPtr)

Source:
IntPtr.cs
Source:
IntPtr.cs
Source:
IntPtr.cs

尝试将字符串分析为值。

public:
 static bool TryParse(ReadOnlySpan<char> s, IFormatProvider ^ provider, [Runtime::InteropServices::Out] IntPtr % result) = ISpanParsable<IntPtr>::TryParse;
public static bool TryParse (ReadOnlySpan<char> s, IFormatProvider? provider, out IntPtr result);
static member TryParse : ReadOnlySpan<char> * IFormatProvider * nativeint -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), provider As IFormatProvider, ByRef result As IntPtr) As Boolean

参数

s
ReadOnlySpan<Char>

包含要转换的数字的字符的只读范围。

provider
IFormatProvider

一个对象,提供有关 s的区域性特定格式设置信息。

result
IntPtr

nativeint

此方法返回时,包含成功分析 s 或失败时未定义的值的结果。

返回

如果已成功转换 s,则 true;否则,false

适用于

TryParse(String, IFormatProvider, IntPtr)

Source:
IntPtr.cs
Source:
IntPtr.cs
Source:
IntPtr.cs

尝试将字符串分析为值。

public:
 static bool TryParse(System::String ^ s, IFormatProvider ^ provider, [Runtime::InteropServices::Out] IntPtr % result) = IParsable<IntPtr>::TryParse;
public static bool TryParse (string? s, IFormatProvider? provider, out IntPtr result);
static member TryParse : string * IFormatProvider * nativeint -> bool
Public Shared Function TryParse (s As String, provider As IFormatProvider, ByRef result As IntPtr) As Boolean

参数

s
String

要分析的字符串。

provider
IFormatProvider

一个对象,提供有关 s的区域性特定格式设置信息。

result
IntPtr

nativeint

此方法返回时,包含成功分析 s 或失败时未定义的值的结果。

返回

如果已成功分析 s,则 true;否则,false

适用于

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

Source:
IntPtr.cs
Source:
IntPtr.cs

尝试将 UTF-8 字符的范围分析为值。

public:
 static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] IntPtr % result) = System::Numerics::INumberBase<IntPtr>::TryParse;
public static bool TryParse (ReadOnlySpan<byte> utf8Text, System.Globalization.NumberStyles style, IFormatProvider? provider, out IntPtr result);
static member TryParse : ReadOnlySpan<byte> * System.Globalization.NumberStyles * IFormatProvider * nativeint -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), style As NumberStyles, provider As IFormatProvider, ByRef result As IntPtr) As Boolean

参数

utf8Text
ReadOnlySpan<Byte>

要分析的 UTF-8 字符的范围。

style
NumberStyles

utf8Text中可以存在的数字样式的按位组合。

provider
IFormatProvider

一个对象,提供有关 utf8Text的区域性特定格式设置信息。

result
IntPtr

nativeint

返回时,包含成功分析 utf8Text 或失败时未定义值的结果。

返回

如果已成功分析 utf8Text,则 true;否则,false

适用于

TryParse(String, NumberStyles, IFormatProvider, IntPtr)

Source:
IntPtr.cs
Source:
IntPtr.cs
Source:
IntPtr.cs

将指定样式和区域性特定格式的数字的字符串表示形式转换为其等效的带符号本机整数。 返回值指示转换是否成功。

public:
 static bool TryParse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] IntPtr % result);
public:
 static bool TryParse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] IntPtr % result) = System::Numerics::INumberBase<IntPtr>::TryParse;
public static bool TryParse (string? s, System.Globalization.NumberStyles style, IFormatProvider? provider, out IntPtr result);
static member TryParse : string * System.Globalization.NumberStyles * IFormatProvider * nativeint -> bool
Public Shared Function TryParse (s As String, style As NumberStyles, provider As IFormatProvider, ByRef result As IntPtr) As Boolean

参数

s
String

包含要转换的数字的字符串。 该字符串使用 style指定的样式进行解释。

style
NumberStyles

枚举值的按位组合,指示 s中可以存在的样式元素。

provider
IFormatProvider

一个对象,提供有关 s的区域性特定格式设置信息。

result
IntPtr

nativeint

此方法返回时,如果转换成功,则包含与 s中包含的数字等效的有符号本机整数值;如果转换失败,则包含零。 如果 s 参数 null 或为空、格式不正确或表示小于 MinValue 或大于 MaxValue的数字,则转换失败。 此参数未初始化传递;将覆盖最初在结果中提供的任何值。

返回

如果已成功转换 s,则 true;否则,false

适用于

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

Source:
IntPtr.cs
Source:
IntPtr.cs
Source:
IntPtr.cs

将指定样式和区域性特定格式的数字的字符表示形式的只读范围转换为其等效的带符号本机整数。 返回值指示转换是否成功。

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

参数

s
ReadOnlySpan<Char>

包含要转换的数字的字符的只读范围。 该字符串使用 style指定的样式进行解释。

style
NumberStyles

枚举值的按位组合,指示 s中可以存在的样式元素。

provider
IFormatProvider

一个对象,提供有关 s的区域性特定格式设置信息。

result
IntPtr

nativeint

此方法返回时,如果转换成功,则包含与 s中包含的数字等效的有符号本机整数值;如果转换失败,则包含零。 如果 s 参数为空、格式不正确或表示小于 MinValue 或大于 MaxValue的数字,则转换失败。 此参数未初始化传递;将覆盖最初在结果中提供的任何值。

返回

如果已成功转换 s,则 true;否则,false

适用于