In the code below I get colType which is a code number for the type. But how would I convert that number into the actual type? Thx!!
colType
for (int j = 0;
The exact answer to the question in the OP (using schoetbi's hint) would be:
public static Type GetType(TypeCode code) { return Type.GetType("System." + Enum.GetName(typeof(TypeCode), code)); }