我想要格式化值int
或string
格式化datetime
格式.SQL中有如下任何函数吗?:
Function: Result TimeAdd( nextrundate,"sec",45) 00:00:45 TimeAdd( nextrundate,"min",45) 00:45:00 TimeAdd( nextrundate,"hour",4) 04:00:00 But: TimeAdd( nextrundate,"min",70) 01:10:00 TimeAdd( nextrundate,"min",190) 03:10:00
是否有一种方法可以在C#中执行此操作?
你的意思是:
TimeSpan.FromSeconds(双)
TimeSpan.FromMinutes(双)
请参阅MSDN:http://msdn.microsoft.com/en-us/library/system.timespan_members(VS.80).aspx