本文介绍了我需要像2014-12-02这样的日期格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试过下面

string dateonly = DateTime.Now.AddDays(-1).ToShortDateString();



if(CIdstatus .WorkedOn == Convert.ToDateTime(dateonly)



但我喜欢这样



2014/12 / 02

I tried below
string dateonly = DateTime.Now.AddDays(-1).ToShortDateString();

if (CIdstatus.WorkedOn == Convert.ToDateTime(dateonly)

but iam getting like this

2014/12/02

推荐答案

string dateonly = DateTime.Now.AddDays(-1).ToString("yyyy-MM-dd");





参见 []和 []



希望这会有所帮助。



See here[^] and here[^]

hope this helps.



string dateonly = DateTime.Now.AddDays(-1).ToString("yyyy-MM-dd");





但如果再将其转换为日期时间转换.ToDateTime(dateonly)然后它将再次转换为诽谤日期时间格式



希望这将解决你的问题



but if you convert it again into date time "Convert.ToDateTime(dateonly)" then it will be converted into slandered date time format again

Hope this will solve your peoblem


这篇关于我需要像2014-12-02这样的日期格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-21 20:10