What is the proper way to get the complete name of month of a DateTime object? e.g. January, December.
DateTime
January
December
I am currently usi
If you receive "MMMM" as a response, probably you are getting the month and then converting it to a string of defined format.
DateTime.Now.Month.ToString("MMMM")
will output "MMMM"
DateTime.Now.ToString("MMMM")
will output the month name