Conversions.ToUInteger 方法  
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定的对象转换为 Uint 值。
重载
| ToUInteger(Object) | 将对象转换为  | 
| ToUInteger(String) | 将字符串转换为  | 
ToUInteger(Object)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
将对象转换为 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 -> uint32Public Shared Function ToUInteger (Value As Object) As UInteger参数
- Value
- Object
要转换的对象。
返回
该对象的 Uint 值。
- 属性
适用于
ToUInteger(String)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
将字符串转换为 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 -> uint32Public Shared Function ToUInteger (Value As String) As UInteger参数
- Value
- String
要转换的字符串。
返回
该字符串的 Uint 值。
- 属性