find month number from date C#
string name = DateTime.ParseExact("01/21/2014", "MM/dd/yyyy", null).ToString("MMMM"); //January
find month number from date C#
string name = DateTime.ParseExact("01/21/2014", "MM/dd/yyyy", null).ToString("MMMM"); //January
convert number of days into months c#
//This function is meant for general conversions only.
//Converting the months between two known date ranges may cause odd results
private int ConvertDaysToMonths(double days)
{
// Divide by this constant to convert days to months.
const double daysToMonths = 30.4368499;
return Convert.ToInt32(Math.Floor(days / daysToMonths));
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us