共用方式為


HeaderUtilities.TryParseNonNegativeInt64(StringSegment, Int64) 方法

定義

嘗試將 StringSegment 正數的表示轉換成其對等的 64 位帶正負號整數。 傳回值,該值指出轉換成功或失敗。

public:
 static bool TryParseNonNegativeInt64(Microsoft::Extensions::Primitives::StringSegment value, [Runtime::InteropServices::Out] long % result);
public static bool TryParseNonNegativeInt64 (Microsoft.Extensions.Primitives.StringSegment value, out long result);
static member TryParseNonNegativeInt64 : Microsoft.Extensions.Primitives.StringSegment * int64 -> bool
Public Shared Function TryParseNonNegativeInt64 (value As StringSegment, ByRef result As Long) As Boolean

參數

value
StringSegment

StringSegment 包含要轉換的數位。

result
Int64

當這個方法傳回時,如果轉換成功,則包含與字串中所含數位相等的 64 位帶正負號的整數值,如果轉換失敗,則為零。 如果 StringSegment 為 null 或 String.Empty、格式不正確、為負數,或代表大於 Int64.MaxValue 的數位,則轉換會失敗。 此參數會以未初始化的狀態來傳遞,並會覆寫任何原本在結果中提供的值。

傳回

true 如果剖析成功則為 ;否則為 false

適用於