我有一个DateTime
名为的集合reportLogs
。我需要从这个创建一个Collection<T>
。最有效的方法是什么?ShortDateString
Collection<DateTime>
Collection<DateTime> reportLogs = reportBL.GetReportLogs(1, null, null);
Collection<string> logDates = new Collection<string>();
foreach (DateTime log in reportLogs)
{
string sentDate = log.ToShortDateString();
logDates.Add(sentDate);
}
编辑:
问题是关于Collection of string
; 不是关于List of string
。我们如何处理字符串的集合?
参考: