Skip to content

amishsthapit/NepaliDateConverter

Repository files navigation

NepaliDateConverter

NepaliDateConverter is a nuget package for .NETCore application that helps you to convert B.S. date to A.D. and vice versa.

Features:

  • Convert BS dates to AD and vice versa
  • Validate if the English dates & Nepali Dates are correct
  • Check if the year is a leap year or not

Limatations:

  • The date conversion is only available till the Year 2090 BS.

Installation

NepaliDateConverter requires .NET Core 2.2 +. Install it using the Nuget Manager or run the following command in Package Manager Console

$ Install-Package NepaliDateConverter.NETCORE

Class & Methods available

The package has two class available. They are as follows:

DateConverter

This class contains static methods which can be used to convert the dates. They are as follows:

Method Parameters Description
ConvertToNepali int Year, int Month, int day This method is used to convert AD dates to BS.
ConvertToEnglish int Year, int Month, int day This method is used to convert BS dates to AD.

The above methods will return object with following property:

Variable Description
Year Converted Year
Month Converted Month
Day Converted Day
WeekDayName Name of the day for the converted date
MonthName Name of the month for the converted date
MonthName Name of the month for the converted date
WeekDay Week day number for the converted date

Calendar

This class contains methods to validate the dates. They are as follows:

Method Parameters Description
IsLeapYear int Year Returns in bool if the year is leap year or not.
GetDayOfWeek int WeekDayNumber Returns the name of the day of the week.
GetEnglishMonth int Month Number Returns the name of the english month for the provided month number.
GetNepaliMonth int Month Number Returns the name of the nepali month for the provided month number.
ValidEnglishDate int Year, int Month, int day Returns in bool if the enterted english date is valid or not
ValidNepaliDate int Year, int Month, int day Returns in bool if the enterted nepali date is valid or not

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages