conversion from clr type to vb.net type

  • Thread starter Thread starter Chuck
  • Start date Start date
C

Chuck

Is there a function of somesort that lets me convert from
Common language runtime type to the Vb.net type.

for example:

System.SByte (none)
System.Int16 Short
System.Int32 Integer
System.Int64 Long

I would like a function that inputs the clr and outputs
the vb.
 
Is there a function of somesort that lets me convert from
Common language runtime type to the Vb.net type.

Do you mean the type names? If so, use the VbTypeName function.

The values don't need any conversion, since these are just two
different names for the same type.



Mattias
 
Back
Top