have problem also.
you can simply change halves of year in code.
foreach (DataColumn dc in dataTable.Columns)
{
if (dc.DataType == typeof(DateTime))
{
foreach (DataRow dr in dataTable.Rows)
{
object value = dr[dc];
if (!Convert.IsDBNull(value))
{
DateTime d = (DateTime)dr[dc];
int year;
int century = Math.DivRem(d.Year, 100, out year);
dr[dc] = new DateTime(year * 100 + century, d.Month, d.Day);
}
}
}
}