本文介绍了如何DateTime对象,DD在C#/ MM / YYYY转换?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何转换DateTime对象> ?在C#中DD / MM / YYYY
How to convert DateTime object to dd/mm/yyyy in C#?
推荐答案
一件事,除了其他的答案要注意的 - /是一个格式字符本身,代表着当地的日期分隔符。如果你想的绝对的确保它使用实际的斜线,或者使用固定区域性(使用一个斜杠):
One thing to note in addition to the other answers - / is a format character itself, representing the local date separator. If you want to make absolutely sure it uses an actual slash, either use the invariant culture (which uses a slash):
string s = dateTime.ToString("dd/MM/yyyy", CultureInfo.InvariantCulture);
或逃避斜线:
string s = dateTime.ToString("dd'/'MM'/'yyyy");
这篇关于如何DateTime对象,DD在C#/ MM / YYYY转换?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!