将DataRow中的DateTime转换为格式化的日期字符串

时间:2016-08-19 19:57:22

标签: c# datetime datatable datarow

我希望有一些我看不清楚的东西,但为了简化,我有以下代码

foreach (DataRow row in dt.Rows)
{
  row["StartOn"] = Convert.ToDateTime(row["StartOn"].ToString()).ToString("MMM dd").ToString();
}

如果我运行以下代码,我会收到“8月9日”

Convert.ToDateTime(row["StartOn"].ToString()).ToString("MMM dd").ToString();

如果我想在此更改后查看行[“StartOn”]中的内容,则其中包含“8/9/2016 12:00:00 AM”

我无法将DataRow格式化为“MMM dd”格式

2 个答案:

答案 0 :(得分:2)

StartOn显然是一个DateTime类型。 DateTime类型没有格式。它们是指定年,月,日和时间(以及其他内容)的对象。您在转换过程中所做的只是剥离时间,以便新的日期时间为凌晨12:00。

答案 1 :(得分:0)

什么是dt.Columns["StartOn"]。我怀疑这是DateTime。让我将你的单行代码分解为2行。

string s = Convert.ToDateTime(row["StartOn"].ToString()).ToString("MMM dd").ToString();
row["StartOn"] = s;

在第1行中,您将DateTime对象转换为字符串对象。但是在第2行,您隐含地将string转换为DateTime

var dt = new DataTable();
dt.Columns.Add("StartOn", typeof(DateTime));
dt.Rows.Add(DateTime.Today);

foreach (DataRow row in dt.Rows) {
    var data = Convert.ToDateTime(row["StartOn"].ToString()).ToString("MMM dd").ToString();
    Console.WriteLine($"Type of stored data is: {data.GetType()}");
    row["StartOn"] = data;
}

// fetch the data
var fetchedData = dt.Rows[0][0];
Console.WriteLine($"Type of Fetched Data is: {fetchedData.GetType()}");

顺便说一下,您可以使用以下行进行转换

((DateTime)row["StartOn"]).ToString("MMM dd");