I have list with datetime objects. I would like to group by month and add it to the dictionary.
So after grouping process I want to have list per month and year. For example: Before grouping [mix below elements]
After grouping: 1) January 2015 - 5 elements 2) February 2015 - 2 elements 2) January 2014 - 2 elements
I have tried like this:
var test = this.myList.GroupBy(x => x.myDate.Month).ToList();
But iI thnink I need to use dictionary. Do you have any ideas how to solve it ?