我有这段代码来检索本地化日期: DateTime.Now.ToString(DateTimeFormatInfo.CurrentInfo.LongDatePattern);
事情是它也回归年份。我不想要这一年。
所以我想我可以从LongDatePattern中删除年份模式。但是在一些国家有逗号,如果我取消了2013年的话会很糟糕。
有人可以帮助我做到吗?
答案 0 :(得分:0)
Windows.Globalization.DateTimeFormatting.DateTimeFormatter将允许您提供一个模板,该模板准确指定您希望在格式化结果中包含哪些组件(例如“月日dayofweek”)。