Conversions.ToInteger 메서드

정의

지정된 개체를 정수 값으로 변환합니다.

오버로드

ToInteger(Object)

개체를 정수 값으로 변환합니다.

ToInteger(String)

문자열을 정수 값으로 변환합니다.

ToInteger(Object)

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

개체를 정수 값으로 변환합니다.

public:
 static int ToInteger(System::Object ^ Value);
public static int ToInteger (object Value);
public static int ToInteger (object? Value);
static member ToInteger : obj -> int
Public Shared Function ToInteger (Value As Object) As Integer

매개 변수

Value
Object

변환할 개체입니다.

반환

개체의 int 값입니다.

적용 대상

ToInteger(String)

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

문자열을 정수 값으로 변환합니다.

public:
 static int ToInteger(System::String ^ Value);
public static int ToInteger (string Value);
public static int ToInteger (string? Value);
static member ToInteger : string -> int
Public Shared Function ToInteger (Value As String) As Integer

매개 변수

Value
String

변환할 문자열입니다.

반환

문자열의 int 값입니다.

적용 대상