DateTime

更新时间:2023-08-01 17:36:19 阅读: 评论:0

实例:
用户输入一个日期,要求输出这个日期是星期几和在这一年中的第几天:
//声明一个DateTime类型的变量用于存放用户输入的日期
DateTime dt;
Console.WriteLine("请输入日期:(例如:2000-01-01 或2000/01/01)");
//把输入的日期字符串转换成日期格式类型
dt = DateTime.Par(Console.ReadLine());
经济标//因为DayOfWeek返回的是0、1、2、3、4、5、6,分别对应的是日、一、二、三、四、五、六
//Substring是进行检索字符串并返回匹配的指定长度的子字符串
string str = "日一二三四五六".Substring((int)dt.DayOfWeek, 1);
Console.WriteLine("{0}年{1}月{2}日是星期{3}", dt.Year, dt.Month, dt.Day, str);
Console.WriteLine("{0}年{1}月{2}日是这一年的第{3}天", dt.Y ear, dt.Month, dt.Day, dt.DayOfYear);
Console.WriteLine("{0}是星期{1}", dt.ToShortDateString(), str);
Console.WriteLine("{0}是这一年的第{1}天", dt.ToLongDateString(),
dt.DayOfYear);
上述代码运行的结果如下手机分身怎么关闭
显示当前时期和时间的不同合格:
//以不同的格式显示当天日期和时间
Console.WriteLine("现在时间是:{0}", DateTime.Now.ToString("yyyy-M-d H:m:s"));
澳门旅游
Console.WriteLine("现在时间是:{0}", DateTime.Now.ToString("yyyy-MM-dd
HH:mm:ss"));
Console.WriteLine("现在时间是:{0}",
DateTime.Now.ToString("yyyy-MM-dd"));
Console.WriteLine("短日期字符串表示现在时间是:{0}", DateTime.Now.Date.ToShortDateString());
Console.WriteLine("长日期字符串表示现在时间是:{0}", DateTime.Now.Date.ToLongDateString ());
上述代码的运行结果如下
日期类型(DateTime)格式化
方法一:
使用DateTime.ToString(format, DateTimeFormatInfo.InvariantInfo) 示例代码:
DateTime dt = DateTime.Now;
t.ToString("M/d/yyyy");
参数format格式详细用法:
格式字符关联属性/说明
d ShortDatePattern
D LongDatePattern
f 完整日期和时间(长日期和短时间)
F FullDateTimePattern(长日期和长时间)
g 常规(短日期和短时间)
G 常规(短日期和长时间)
m、M MonthDayPattern
r、R RFC1123Pattern
s 使用当地时间的SortableDateTimePattern(基于ISO 8601)
t ShortTimePattern
T LongTimePattern
u UniversalSortableDateTimePattern 用于显示通用时间的格式
U 使用通用时间的完整日期和时间(长日期和长时间)
y、Y YearMonthPattern
下面列出可被合并以构造自定义模式的模式:
d 月中的某一天。一位数的日期没有前导零。
dd 月中的某一天。一位数的日期有一个前导零。
ddd 周中某天的缩写名称,在AbbreviatedDayNames 中定义。1千克等于几斤
dddd 周中某天的完整名称,在DayNames 中定义。
M 月份数字。一位数的月份没有前导零。
MM 月份数字。一位数的月份有一个前导零。
MMM 月份的缩写名称,在AbbreviatedMonthNames 中定义。
MMMM 月份的完整名称,在MonthNames 中定义。
y 不包含纪元的年份。如果不包含纪元的年份小于10,则显示不具有前导零的年份。
yy 不包含纪元的年份。如果不包含纪元的年份小于10,则显示具有前导零的年份。
yyyy 包括纪元的四位数的年份。
gg 时期或纪元。如果要设置格式的日期不具有关联的时期或纪元字符串,则忽略该模式。
h 12 小时制的小时。一位数的小时数没有前导零。
hh 12 小时制的小时。一位数的小时数有前导零。
H 24 小时制的小时。一位数的小时数没有前导零。
HH 24 小时制的小时。一位数的小时数有前导零。
黑凤蝶m 分钟。一位数的分钟数没有前导零。
mm 分钟。一位数的分钟数有一个前导零。
s 秒。一位数的秒数没有前导零。
ss 秒。一位数的秒数有一个前导零。
f 秒的小数精度为一位。其余数字被截断。
ff 秒的小数精度为两位。其余数字被截断。
fff 秒的小数精度为三位。其余数字被截断。
ffff 秒的小数精度为四位。其余数字被截断。
fffff 秒的小数精度为五位。其余数字被截断。
ffffff 秒的小数精度为六位。其余数字被截断。
fffffff 秒的小数精度为七位。其余数字被截断。
t 在AMDesignator 或PMDesignator 中定义的AM/PM 指示项的第一个字符(如果存在)。
tt 在AMDesignator 或PMDesignator 中定义的AM/PM 指示项(如果存在)。
z 时区偏移量(“+”或“-”后面仅跟小时)。一位数的小时数没有前导零。例如,太平洋标准时间是“-8”。
zz 时区偏移量(“+”或“-”后面仅跟小时)。一位数的小时数有前导零。例如,太平洋标准时间是“-08”。
zzz 完整时区偏移量(“+”或“-”后面跟有小时和分钟)。一位数的小时数和分钟数有前导零。例如,太平洋标准时间是“-08:00”。
: 在TimeSeparator 中定义的默认时间分隔符。
/ 在DateSeparator 中定义的默认日期分隔符。
% c 其中  c 是格式模式(如果单独使用)。如果格式模式与原义字符或其他格式模式合并,则可以省略“%”字符。
\ c 其中  c 是任意字符。照原义显示字符。若要显示反斜杠字符,请使用“\\”。
方法二:
DateTime dt = DateTime.Now;
Label1.Text = dt.T oString();//2005-11-5 13:21:25
Label4.Text = dt.T oLocalTime().ToString();//2005-11-5 21:21:25 Label5.T ext = dt.T oLongDateString().T oString();//2005年11月5日Label6.T ext =
dt.T oLongTimeString().T oString();//13:21:25
dt.ToString();//2005-11-5 13:21:25
dt.ToFileTime().ToString();//127756416859912816
dt.ToFileTimeUtc().ToString();//127756704859912816
dt.ToLocalTime().ToString();//2005-11-5 21:21:25
dt.ToLongDateString().ToString();//2005年11月5日
dt.ToLongTimeString().ToString();//13:21:25
dt.ToOADate().ToString();//38661.5565508218红颜祸水是什么意思
dt.ToShortDateString().ToString();//2005-11-5
dt.ToShortTimeString().ToString();//13:21
dt.ToUniversalTime().ToString();//2005-11-5 5:21:25
dt.Year.ToString();//2005
dt.Date.ToString();//2005-11-5 0:00:00
每年今日dt.DayOfWeek.ToString();//Saturday
dt.DayOfYear.ToString();//309
dt.Hour.ToString();//13
dt.Millicond.ToString();//441
dt.Minute.ToString();//30
dt.Month.ToString();//11
dt.Second.ToString();//28
dt.Ticks.ToString();//632667942284412864
dt.TimeOfDay.ToString();//13:30:28.4412864
dt.ToString();//2005-11-5 13:47:04
dt.AddYears(1).ToString();//2006-11-5 13:47:04dreams是什么意思
dt.AddDays(1.1).ToString();//2005-11-6 16:11:04
dt.AddHours(1.1).ToString();//2005-11-5 14:53:04
dt.AddMilliconds(1.1).ToString();//2005-11-5 13:47:04
dt.AddMonths(1).ToString();//2005-12-5 13:47:04
dt.AddSeconds(1.1).ToString();//2005-11-5 13:47:05
dt.AddMinutes(1.1).ToString();//2005-11-5 13:48:10
dt.AddTicks(1000).ToString();//2005-11-5 13:47:04
dt.CompareTo(dt).ToString();//0
dt.Add(?).ToString();//问号为一个时间段
dt.Equals("2005-11-6 16:11:04").ToString();//Fal
dt.Equals(dt).ToString();//True
dt.GetHashCode().ToString();//1474088234
dt.GetType().ToString();//System.DateTime
dt.GetTypeCode().ToString();//DateTime
dt.GetDateTimeFormats('s')[0].ToString();//2005-11-05T14:06:25 dt.GetDateTimeFormats('t')[0].ToString();//14:06
dt.GetDateTimeFormats('y')[0].ToString();//2005年11月
dt.GetDateTimeFormats('D')[0].ToString();//2005年11月5日
dt.GetDateTimeFormats('D')[1].ToString();//2005 11 05
dt.GetDateTimeFormats('D')[2].ToString();//星期六2005 11 05
dt.GetDateTimeFormats('D')[3].ToString();//星期六2005年11月5日dt.GetDateTimeFormats('M')[0].ToString();//11月5日
dt.GetDateTimeFormats('f')[0].ToString();//2005年11月5 datetime 操作
//今天
DateTime.Now.Date.ToShortDateString();
//昨天,就是今天的日期减一
DateTime.Now.AddDays(-1).ToShortDateString();
//明天,同理,加一
DateTime.Now.AddDays(1).ToShortDateString();

本文发布于:2023-08-01 17:36:19,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/1125941.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:时间   格式   字符   前导   字符串
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图