c 時間轉換

2022-05-29 14:00:10 字數 1190 閱讀 1575

**

最近做asp.net的乙個專案,獲取時間的時候,由於我的系統時間設定了上午和下午,結果datetime.now老是寫不到資料庫中,然後,上網查了個

[csharp]view plain

copy

print

?datetime date = datetime.now;   

string

datestr= date.tostring(

"yyyy-mm-dd hh:mm:ss"

);    

避免了這個問題。

進而又看到一片比較全面的日期轉換,如是貼了過來:

如此類推

c#比較兩時間大小

1、比較時間大小的實驗   

string st1="12:13";   

string st2="14:14";   

datetime dt1=convert.todatetime(st1);  

datetime dt2=convert.todatetime(st2);   

datetime dt3=datetime.now;   

msg.text=st1+">"+st2;    else     msg.text=st1+"<"+st2;   

msg.text+="\r\n"+dt1.tostring();   

if(datetime.compare(dt1,dt3)>0)     msg.text+="\r\n"+st1+">"+dt3.tostring();    else     msg.text+="\r\n"+st1+"<"+dt3.tostring();

2、計算兩個時間差值的函式,返回時間差的絕對值:        

private string datediff(datetime datetime1,datetime datetime2)        

catch 

return datediff;     

timespan ts=new timespan(40,0,0,0);   

datetime dt2=datetime.now.subtract(ts);   

msg.text=datetime.now.tostring()+"-"+ts.days.tostring()+"天\r\n";   

msg.text+=dt2.tostring();

C 時間轉換

1.將整數 totletime 分鐘 轉換為00 00 00 day hour minute 的格式 a.根據除法得到 day hour minute的整數 比如說你需要將時間給某乙個控制項 textbox1.text string.format day,hour,minute 用的時候,你只需要將...

C 時間轉換

1 時間格式轉換 system.datetime currenttime new system.datetime 1.1 取當前年月日時分秒 currenttime system.datetime.now 1.2 取當前年 int 年 currenttime.year 1.3 取當前月 int 月 ...

C 時間轉換相關

system.datetime currenttime new system.datetime 取當前年月日時分秒 currenttime system.datetime.now 取當前年 int curyear currenttime.year 取當前月 int curmon currenttim...