Conversions.ToUInteger 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將指定的物件轉換成 Uint
值。
多載
ToUInteger(Object) |
將物件轉換成 |
ToUInteger(String) |
將字串轉換成 |
ToUInteger(Object)
重要
此 API 不符合 CLS 規範。
將物件轉換成 Uint
值。
public:
static System::UInt32 ToUInteger(System::Object ^ Value);
[System.CLSCompliant(false)]
public static uint ToUInteger (object Value);
[System.CLSCompliant(false)]
public static uint ToUInteger (object? Value);
[<System.CLSCompliant(false)>]
static member ToUInteger : obj -> uint32
Public Shared Function ToUInteger (Value As Object) As UInteger
參數
- Value
- Object
要轉換的物件。
傳回
物件的 Uint
值。
- 屬性
適用於
ToUInteger(String)
重要
此 API 不符合 CLS 規範。
將字串轉換成 Uint
值。
public:
static System::UInt32 ToUInteger(System::String ^ Value);
[System.CLSCompliant(false)]
public static uint ToUInteger (string Value);
[System.CLSCompliant(false)]
public static uint ToUInteger (string? Value);
[<System.CLSCompliant(false)>]
static member ToUInteger : string -> uint32
Public Shared Function ToUInteger (Value As String) As UInteger
參數
- Value
- String
要轉換的字串。
傳回
字串的 Uint
值。
- 屬性