Controls.Toolkit.Month.GetDaysByMonth C# (CSharp) Method

GetDaysByMonth() public method

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