共用方式為


IParsable<TSelf>.TryParse(String, IFormatProvider, TSelf) 方法

定義

嘗試將字串剖析成值。

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

參數

s
String

要剖析的字串。

provider
IFormatProvider

提供關於 s 之特定文化特性格式資訊的物件。

result
TSelf

當這個方法傳回時,包含成功剖析 s 或失敗時未定義值的結果。

傳回

Boolean

true 如果 s 已成功剖析,則為 ,否則為 false

適用於