示例#1
0
 private RecurringDayOfMonthItem(RecurringDayOfMonth type)
 {
     Value = type;
     Text  = RecurringDayOfMonthText[type];
 }
示例#2
0
 public static bool TryGetItem(RecurringDayOfMonth type, out RecurringDayOfMonthItem item)
 {
     return(RecurringDayOfMonthItems.TryGetValue(type, out item));
 }