C#如何将DateTime的12小时格式转换为24小时时间格式????
看字母H的大小写,大写H是24小时,小写h是12小时。具体转换如下:
string time = Convert.ToDateTime(date).ToString("yyyy-MM-dd HH:mm");//24小时
string time = Convert.ToDateTime(date).ToString("yyyy-MM-dd hh:mm");//12小时
扩展资料
C#中常使用的时间类如下
1、public DateTime(int,int,int)
创建指定年月日的时间对象,重载有多个方法,可以创建具有年月日时分秒的时间对象
2、public static int DaysInMonth(int year, int month)
返回指定年份月份的天数
3、public static int Compare(System.DateTime t1, System.DateTime t2)
返回两个时间之间的关系
4、public bool Equals(System.DateTime value)
返回实例与另一个实例是否相等
5、public static System.DateTime Parse(string s)
将等效字符串转化为时间