博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
自定义日期和时间格式字符串
阅读量:5263 次
发布时间:2019-06-14

本文共 525 字,大约阅读时间需要 1 分钟。

1 DateTime thisDate1 = new DateTime(2011, 6, 10);
02 Console.WriteLine("Today is " + thisDate1.ToString("MMMM dd, yyyy") + ".");
03   
04 DateTimeOffset thisDate2 = new DateTimeOffset(2011, 6, 10, 15, 24, 16, 
05                                               TimeSpan.Zero);
06 Console.WriteLine("The current date and time: {0:MM/dd/yy H:mm:ss zzz}"
07                    thisDate2); 
08 // The example displays the following output:
09 //    Today is June 10, 2011.
10 //    The current date and time: 06/10/11 15:24:16 +00:00

转载:

转载于:https://www.cnblogs.com/xingquan/archive/2011/07/08/2100917.html

你可能感兴趣的文章
平台维护流程
查看>>
SQL (FMDB)
查看>>
2012暑期川西旅游之总结
查看>>
Linux发行版的排行
查看>>
宾得镜头大全与发展史
查看>>
spread+wackamole打造全新高可用+负载均衡
查看>>
sql语句中的left join,right join,inner join的区别
查看>>
Xcode 快捷键及代码格式化
查看>>
在 Swift 项目中实现侧滑菜单-利用 SWRevealViewController
查看>>
Android JNI 传递对象
查看>>
Android TextView drawableLeft 在代码中实现
查看>>
函数定义从零开始学C++之从C到C++(一):const与#define、结构体对齐、函数重载name mangling、new/delete 等...
查看>>
字段方法“轻松”实现一次查询多表
查看>>
生成编辑UBIFS 创建记录
查看>>
程序启动冲出UAC-解决Win UAC问题的编程经验
查看>>
nullnullhow to read directory name using std c in the linux
查看>>
测试SQLServer拆分字符串到临时表
查看>>
安装版本Visual Studio打包(Windows Installer),你不知道的RemovePreviousVersions 属性
查看>>
【C语言】溢出的处理及大小端模式的判断
查看>>
JsonPath:从多层嵌套Json中解析所需要的值
查看>>