最佳答案
我有一个包含所有月份的组合框。
我需要知道的是所选月份的天数。
var month = cmbMonth.SelectedIndex + 1;
DateTime date = Convert.ToDateTime(month);
因此,如果用户选择一月,我需要保存31到一个变量。