程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C# 以後零碎時間獲取及時間格式詳解

C# 以後零碎時間獲取及時間格式詳解

編輯:C#入門知識

C# 以後零碎時間獲取及時間格式詳解。本站提示廣大學習愛好者:(C# 以後零碎時間獲取及時間格式詳解)文章只能為提供參考,不一定能成為您想要的結果。以下是C# 以後零碎時間獲取及時間格式詳解正文


C# 以後零碎時間獲取及時間格式

最近學習C# 的知識,對獲取零碎時間和時間格式停止了總結,這是本文在網上整理的詳細材料,大家看下!

--DateTime 數字型  
System.DateTime currentTime=new System.DateTime();  
取以後年月日時分秒   currentTime=System.DateTime.Now;  
取以後年   int 年=currentTime.Year;  
取以後月   int 月=currentTime.Month;  
取以後日   int 日=currentTime.Day;  
取以後時   int 時=currentTime.Hour;  
取以後分   int 分=currentTime.Minute;  
取以後秒   int 秒=currentTime.Second;  
取以後毫秒  int 毫秒=currentTime.Millisecond; (變量可用中文) 
取中文日期顯示——年月日時分  string strY=currentTime.ToString("f"); //不顯示秒 
取中文日期顯示_年月    string strYM=currentTime.ToString("y"); 
取中文日期顯示_月日   string strMD=currentTime.ToString("m"); 
取以後年月日,格式為:2003-9-23   string strYMD=currentTime.ToString("d"); 
取以後時分,格式為:14:24   string strT=currentTime.ToString("t"); 
DateTime.Now.ToString();//獲取以後零碎時間 完好的日期和時間 
DateTime.Now.ToLongDateString();//只顯示日期 xxxx年xx月xx日 ,一個是長日期 
DateTime.Now.ToShortDateString();//只顯示日期 xxxx-xx-xx 一個是短日期 
//明天    DateTime.Now.Date.ToShortDateString(); 
//昨天 的    DateTime.Now.AddDays(-1).ToShortDateString(); 
//今天 的    DateTime.Now.AddDays(1).ToShortDateString(); 
 
//本周(留意這裡的每一周是從周日始至周六止) 
DateTime.Now.AddDays(Convert.ToDouble((0 - Convert.ToInt16(DateTime.Now.DayOfWeek)))).ToShortDateString(); 
DateTime.Now.AddDays(Convert.ToDouble((6 - Convert.ToInt16(DateTime.Now.DayOfWeek)))).ToShortDateString(); 
//上周,上周就是本周再減去7天 
DateTime.Now.AddDays(Convert.ToDouble((0 - Convert.ToInt16(DateTime.Now.DayOfWeek))) - 7).ToShortDateString(); 
DateTime.Now.AddDays(Convert.ToDouble((6 - Convert.ToInt16(DateTime.Now.DayOfWeek))) - 7).ToShortDateString(); 
//下周  本周再加上7天 
DateTime.Now.AddDays(Convert.ToDouble((0 - Convert.ToInt16(DateTime.Now.DayOfWeek))) + 7).ToShortDateString(); 
  DateTime.Now.AddDays(Convert.ToDouble((6 - Convert.ToInt16(DateTime.Now.DayOfWeek))) + 7).ToShortDateString(); 
//本月  本月的第一天是1號,最後一天就是下個月一號再減一天。 
DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString() + "1"; //第一天 
DateTime.Parse(DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString() + "1").AddMonths(1).AddDays(-1).ToShortDateString();//最後一天 
另一種辦法: 
DateTime now = DateTime.Now;  
DateTime d1 = new DateTime(now.Year, now.Month, 1); //本月第一天 
DateTime d2 = d1.AddMonths(1).AddDays(-1); //本月最後一天 
PS: 
DateTime.Now.DayOfWeek.ToString();//英文星期顯示,Wednesday 
(int)DateTime.Now.DayOfWeek   數字,若是周三,後果對應為3 
DateTime.Now.ToString("dddd", new System.Globalization.CultureInfo("zh-cn")); //中文星期顯示 
DateTime.Now.ToString("dddd");//中文星期顯示 
DateTime.Now.ToString("dddd,MMMM,dd ,yyyy", new System.Globalization.DateTimeFormatInfo());//顯示日期格式Friday,July, 01,2009 
DateTime.Now.ToString("dddd,dd MMMM,yyyy") //輸入  星期三,30 一月,2008 
出處:http://msdn.microsoft.com/zh-cn/vstudio/bb762911(VS.95).aspx,如何:從特定日期中提取星期幾 

datetime類型在tostring()format的格式設置 

參數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 中定義。  
 dddd 周中某天的完好稱號,在 DayNames 中定義。  
 M 月份數字。一位數的月份沒有前導零。  
 MM 月份數字。一位數的月份有一個前導零。  
 MMM 月份的縮寫稱號,在 AbbreviatedMonthNames 中定義。  
 MMMM 月份的完好稱號,在 MonthNames 中定義。  
 y 不包括紀元的年份。假如不包括紀元的年份小於 10,則顯示不具有前導零的年份。  
 yy 不包括紀元的年份。假如不包括紀元的年份小於 10,則顯示具有前導零的年份。  
 yyyy 包括紀元的四位數的年份。  
 gg 時期或紀元。假如要設置格式的日期不具有關聯的時期或紀元字符串,則疏忽該形式。 
   h 12 小時制的小時。一位數的小時數沒有前導零。  
 hh 12 小時制的小時。一位數的小時數有前導零。  
 H 24 小時制的小時。一位數的小時數沒有前導零。  
 HH 24 小時制的小時。一位數的小時數有前導零。 

感激閱讀,希望能協助到大家,謝謝大家對本站的支持!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved