Cats.Helpers.EthiopianDate.ToGregorianDate C# (CSharp) 메소드

ToGregorianDate() 공개 메소드

Toes the gregorian date.
public ToGregorianDate ( ) : System.DateTime
리턴 System.DateTime
        public DateTime ToGregorianDate()
        {
            return EthiopianToGregorian(this.ToDateString());
        }

Usage Example

예제 #1
0
 public DateTime ReturnGregorianDate(string am_date)
 {
     _date = am_date.Split('-');
     var ethDate = new EthiopianDate(int.Parse(_date[2]), EthiopianDate.GetMonthNo(_date[1]), int.Parse(_date[0]));
     ConvertedDate = ethDate.ToGregorianDate();
     return ConvertedDate;
 }
All Usage Examples Of Cats.Helpers.EthiopianDate::ToGregorianDate