ASP.NET

Convert Monthname to Month number:

string strMonthName = "January";
DateTime.ParseExact(strMonthName, "MMMM", CultureInfo.CurrentCulture).Month;

Convert MonthNumber to Monthname:

CultureInfo.CurrentCulture.DateTimeFormat.GetMonthName(1);

No comments:

Codeigniter Shield Authorization

Codeigniter Shield Authorization CodeIgniter Shield is the official authentication and authorization framework for CodeIgniter 4. It provide...