例如2001-2-11 0:00:00  我想得到2001-2-11
我是用如下方法得到的日期值
public static DateTime ValidateDataRow_T(DataRow row, string colname)
        {
            if (row[colname] != DBNull.Value)
                return Convert.ToDateTime(row[colname]);
            else
                return System.DateTime.MinValue;
        }