今天写一个Json.net比较偏门的用法,也许你很久都用不到,也许你明天就能派上用场。我们都知道 Json.net 序列话的用法Test test = new Test() { A = "123", B = DateTime.Now, C = DateTime.Now.AddDays(1) }; ....
分类:
Web程序 时间:
2014-10-25 18:40:59
阅读次数:
189
我用的最简单的办法是 代码如下 复制代码 DateTime dtone = Convert.ToDateTime("2007-1-1 05:32:22");DateTime dtwo = Convert.ToDateTime("2007-1-1 04:20:15");TimeSpan span = ...
time_t是从1970年1月1日的格林尼治时间开始的,所以以下就是你要的结果System.DateTime time= new System.DateTime(1970, 1, 1).ToLocalTime().AddSeconds(1199351662);class Program{ st...
分类:
编程语言 时间:
2014-10-24 09:10:07
阅读次数:
182
1.提供视图模型对象你能把一个对象作为View方法的参数传递给视图.[csharp] view plaincopyprint?publicViewResultIndex(){DateTimedate=DateTime.Now;returnView(date);}然后我们在视图中使用Razor的Mod...
分类:
Web程序 时间:
2014-10-23 20:37:43
阅读次数:
173
static void Main(string[] args) { DateTime dt1 = DateTime.Now; string text = "abcdedcba"; bool bYes = Recv(tex...
分类:
编程语言 时间:
2014-10-23 16:04:34
阅读次数:
187
1 private void Form1_Load(object sender, EventArgs e) 2 { 3 DateTime date=System.DateTime.Today;//只有日期 4 //System.Dat...
分类:
其他好文 时间:
2014-10-22 23:16:23
阅读次数:
319
1、将INTEGER类型转成日期类型:CreateDate为INTEGER类型INSERT INTO tblTest(AccountId,UserName,CreateDate) VALUES({0},{1},strftime('%s',{2}));转换的时候:select datetime(Cre...
分类:
数据库 时间:
2014-10-22 17:49:54
阅读次数:
206
public class Person { public DateTime birth; public DateTime? death; string name; public TimeSpan Age { get { ...
1 create table RefNoSeed( 2 prefix char(4), 3 seed int 4 ) 5 6 create table RefNoTable( 7 insertTime datetime unique, 8 RefNo varcha...
分类:
其他好文 时间:
2014-10-22 12:24:17
阅读次数:
215
DateTimedt=DateTime.Now;Label1.Text=dt.ToString();//2005-11-513:21:25Label2.Text=dt.ToFileTime().ToString();//127756416859912816Label3.Text=dt.ToFileTimeUtc().ToString();//127756704859912816Label4.Text=dt.ToLocalTime().ToString();//2005-11-521:21:25Label5.T..