Exemple #1
0
 public DateFormat()
     : base()
 {
     Day       = default;
     Month     = default;
     Year      = default;
     Separator = default;
 }
Exemple #2
0
 public DateFormat(DateDay day, DateMonth month, DateYear year, DateSeparator separator, string culture)
     : base(culture)
 {
     Day       = day;
     Month     = month;
     Year      = year;
     Separator = separator;
 }