通过 foreach 循环传入日期列表“DiaryEntry”。它记录的每个日期都将在日历上突出显示....
foreach (DateTime d in DiaryEntry)
{
Calendar1.SelectedDates.Add(d);//CALENDAR1 being the ID of the calendar on the aspx page
}
错误:foreach 语句无法对“Diary_Entry”类型的变量进行操作,因为“Diary_Entry”不包含“GetEnumerator”的公共定义
任何人都知道我该如何解决这个问题?谢谢