問題を回避する私は、DateTimeを使用して結果を次のように表示する方法しか知りません。
{
string uri = "http://localhost:8002/Service/HireDate";
XDocument xDoc = XDocument.Load(uri);
var staff = xDoc.Descendants("HireDate")
.Select(n => new
{
StartDate = DateTime.Parse(n.Element("HireFromDate").Value), //this line
EndDate = DateTime.Parse(n.Element("HireToDate").Value), //this line
TotalDaysHired = n.Element("NumberOfDaysHired").Value,
})
.ToList();
dataGrid9.ItemsSource = staff;
}
ただし、これは私のデータグリッドで次のように出力されます。
15/07/2012 00:00:00
27/07/2012 00:00:00
日付だけが欲しい時刻を削除する方法はありますか?