How to initialize the array of data types in System.Type Datatype
This sample code i am trying
Type[] coltypes = {string, string, string, string, string, string }; after I found the solution in this link i am able to understand the problem
Solution for this : Type[] coltypes = {typeof(string),typeof(int),typeof(double),typeof(string)};