当我使用 system.datetime 作为我的数据成员时,它会在我的 datagridview 中返回一种奇怪的格式。
我的数据成员看起来像这样:
[DataMember(Name = "TimeAdded")]
public DateTime TimeAdded;
我的 AddStudent 看起来像这样:
public void AddStudent(Student student)
{
student.StudentID = (++eCount).ToString();
student.TimeAdded = DateTime.Now; // not important more so the method to get the correct format
students.Add(student);
}
我得到的输出2012-04-12T03:10:42.8138255+01:00
是有办法解决这个问题吗?