System.Convert 메서드
LINQ to SQL은 다음 Convert 메서드를 지원하지 않습니다.
IFormatProvider 매개 변수를 사용하는 버전
문자 배열 또는 바이트 배열과 관련된 메서드
다음과 같은 메서드
public static <Type2> To<Type2>(<Type1> value);
여기서 각 값은 다음과 같습니다.여기서
Type1
및Type2
은(는) 각각sbyte
,uint
,ulong
또는ushort
중 하나입니다.C#:
int To<int type>(string value, int fromBase),
ToString(... value, int toBase)
Visual Basic:
Function To(Of [Numeric])(value as String, fromBase As Integer)
As [Numeric], ToString( value As …, toBase As Integer)