Literal four = new Literal();
string timeanddate;
timeanddate = DateTime.UtcNow.ToString();
DateTime dt = new DateTime();
DateTime dt_calc = new DateTime();
dt = Convert.ToDateTime(timeanddate);
dt_calc = dt.AddHours(3);
four.Text = "3hr added and this gives>> " + dt_calc.ToString();
form1.Controls.Add(four);
一切都在上午下午我要工作24小時與如何將時間格式更改爲24小時?在C#中
不錯,但,是有辦法,使24小時默認,這就是如果我DONOT要使用的任何格式選項!只是默認返回的值應該是24小時。 – user287745 2010-08-21 07:56:45
@ user287745:是的,有!首先看[jgauffin的答案](http://stackoverflow.com/questions/3536789/how-to-change-time-format-to-24hrs-in-c/3537366#3537366);那麼有關更多信息,請參閱:[CurrentCulture](http://msdn.microsoft.com/zh-cn/library/system.globalization.cultureinfo.currentculture.aspx)和[DateTimeFormatInfo](http:///msdn.microsoft.com/en-us/library/system.globalization.datetimeformatinfo.aspx)。 – 2010-08-21 14:43:01