示例#1
0
 public DateExact(int Day, Month Month, YearGregorian Year, Reporting Reporting)
     : base(Reporting)
 {
     this.Day   = Day;
     this.Month = Month;
     this.Year  = Year;
 }
示例#2
0
 public DateGregorian(Month Month, YearGregorian Year, Reporting Reporting)
     : this(0, Month, Year, Reporting)
 {
 }
示例#3
0
 public DateGregorian(YearGregorian Year, Reporting Reporting)
     : this(Month.Unknown, Year, Reporting)
 {
 }