如何从DateTime获取完整的月份名称

问题描述:

从DateTime对象获取完整的月份名称的正确方法是什么,例如1月,12月。我目前正在使用

What is the proper way to get the complete month name using from a DateTime object eg. January, December. I am currently using

DateTime.Now.ToString("MMMMMMMMMMMMM");

我知道这不是正确的方法。

I know it's not the correct way to do it.