我需要以月份日期、年份显示日期(例如:2010 年 1 月 20 日)。

有什么建议吗?

最佳答案

var dt = new DateTime(2010, 20, 1);
string s = dt.ToString("MMMM dd, yyyy");

See here for more info.

关于c# - C#中的日期格式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2831947/

10-17 02:52