Cats.Helpers.EthiopianDate.EthiopianDate C# (CSharp) Метод

EthiopianDate() публичный Метод

Initializes a new instance of the EthiopianDate class.
public EthiopianDate ( ) : System
Результат System
        public EthiopianDate()
        {
            //Get today's date in the class
            Year = DateTime.Now.Year;
            Month = DateTime.Now.Month;
            Day = DateTime.Now.Day;

            GregorianToEthiopian(ref Year, ref Month, ref Day);
        }

Same methods

EthiopianDate::EthiopianDate ( System.DateTime dateTime ) : System
EthiopianDate::EthiopianDate ( int year, int month, int day ) : System
EthiopianDate::EthiopianDate ( string ddMMyyyy ) : System