System.Convert Methods
LINQ to SQL does not support the following Convert methods.
Versions with an IFormatProvider parameter.
Methods that involve char arrays or byte arrays:
The following methods:
public static <Type2> To<Type2>(<Type1> value);
whereType1
andType2
are each one ofsbyte
,uint
,ulong
, orushort
.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)