View on GitHub

Ethiopian Calendar

የኢትዮጵያ ዘመን አቆጣጠር

Download this project as a .zip file Download this project as a tar.gz file

Welcome to Ethiopian Calendar Pages.

The Ethiopian Calendar is based on the ancient Coptic calendar and still in use today in Ethiopia. It has twelve 30-day months and a 13th month of five days (six days in leap years). Download the tool at Nuget

EthiopianDate

Convert From gregorian To EthiopianDate

EthiopianDate ethiopianDate = new EthiopianDate(new DateTime(2015,5,6));

Convert From Ethiopian To Gregorian

EthiopianDate ethiopianDate = new EthiopianDate(2005, 08, 8); //year,month,day
DateTime dateTime = ethiopianDate.DateTime; //Converted to GregorianCalendar
ethiopianDate.ToGregorianDate(); //Converted To GregrorianCalendar

Fluent

DateTime.Now.ToEthiopianLongDateString();
DateTime.Now.ToEthiopianShortDateString();
DateTime.Now.ToEthiopianDateString("ddd MMMM dd, yyyy");
EthiopianDate ethiopianDate = DateTime.Now.ToEthiopianDate();
Format Description Result
d The day of the month, from 1 through 30. 16
dd The day of the month, from 01 through 31. 16
ddd "The full name of the day of the week. ዓርብ
M The month, from 01 through 13. 12
MM The month, from 01 through 13. 12
MMMM The full name of the month. ነሐሴ
yy The year, with a minimum of Two digits. 06
yyyy The year as a four-digit number. 2006
yyyyy The year as a five-digit number. 02006

Authors and Contributors

Baakal Tesfaye @baakal