Conversions.ToUInteger 方法

定义

将指定的对象转换为 Uint 值。

重载

ToUInteger(Object)

将对象转换为 Uint 值。

ToUInteger(String)

将字符串转换为 Uint 值。

ToUInteger(Object)

Source:
Conversions.vb
Source:
Conversions.vb
Source:
Conversions.vb

重要

此 API 不符合 CLS。

符合 CLS 的替代方案
Microsoft.VisualBasic.CompilerServices.Conversions.ToInteger(Object)

将对象转换为 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)

Source:
Conversions.vb
Source:
Conversions.vb
Source:
Conversions.vb

重要

此 API 不符合 CLS。

符合 CLS 的替代方案
Microsoft.VisualBasic.CompilerServices.Conversions.ToInteger(String)

将字符串转换为 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 值。

属性

适用于