Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 wpf 中使用 devexpress 计划,我的应用程序在后台有一个 Windows 服务,它试图通过 tcp/ip 为所有约会和 rscurrying 事件发送一些日期。
我的问题是我不知道如何获取指定日期的所有正常重复事件。
如果您的数据源是 List 您可以执行以下操作:
List<T> appointments = ((List<T>)appointmentStorage.Appointments).FindAll(myObject => myObject.Date.Equals(myDate));