要将日期格式更改为YYYY-MM-DD [英] To change the date format to YYYY-MM-DD

查看:215
本文介绍了要将日期格式更改为YYYY-MM-DD的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想将Datefomat从DD / MM / YYYY更改为YYYY / MM / DD。

那么有没有办法将日期更改为该格式。我正在使用datepicker来选择日期。

我正在为Windows phone 8 App集成这个日期选择器。

Hi, I want to change the Datefomat from DD/MM/YYYY to YYYY/MM/DD.
So is there any way to change the date to that format. I am using datepicker to select the date.
I am integrating this datepicker for Windows phone 8 App.

推荐答案

string myDate = "12-Apr-1976 22:10";
DateTime dateValue = DateTime.Parse(myDate);
string format = "YYYY/MM/DD";
string d = dateValue.ToString(format);

试试这个


string strDate = DateTime.Now.ToString("YYYY-MM-DD");


我检查了你们给出的解决方案。

它给了我很多帮助,但实际的解决方案是

I checked the solution what you guys gave.
It helped me alot, but the actual solution is
string format = "yyyy-MM-dd";
string f = DateTime.Now.ToString(format);


这篇关于要将日期格式更改为YYYY-MM-DD的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆