I have a comboBox with all the months in it.
What I need to know is the number of days in that month.
var month = cmbMonth.SelectedIndex + 1;
DateTime date = Convert.ToDateTime(month);
So if I user selects January, I need to save 31 to a variable. Thanks.