Controls.Toolkit.Month.GetDaysByMonth C# (CSharp) 메소드

GetDaysByMonth() 공개 메소드

public GetDaysByMonth ( int month ) : ObservableCollection
month int
리턴 ObservableCollection
        public ObservableCollection<Day> GetDaysByMonth(int month)
        {
            return Days.Where(months => months.CurrentDate.Month == month).ToabservableCollection<Day>();
        }