What kind of dates do you have in the column?
Do all of them fit within the range of the type?
As an aside, the correct way to get a Type
object for the DataColumn
constructor is the typeof
keyword, which is orders of magnitude faster.
Therefore, to create the column, you should write
new DataColumn("myDate", typeof(DateTime))