2012年3月26日

GetHashCode(一)为啥 如何重写

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace HashCode{ class Program { static void Main(string[] args) { //GetHashCode 值 A a1 = new A(1);//1 A a2 = new A(2);//0 A a3 = new A(3);//1 ... 阅读全文

posted @ 2012-03-26 13:54 雨渐渐 阅读(490) 评论(0) 推荐(0) 编辑

各种时间戳及用途

摘要: (一) /// <summary> /// 获得距离1970-01-01的毫秒数 /// </summary> /// <param name="newDate">时间参数</param> /// <returns></returns> public static long GetMilliSecond(DateTime newDate) { DateTime oldDate = new DateTime(1970, 1, 1); // Difference in days, hours, and mi 阅读全文

posted @ 2012-03-26 09:04 雨渐渐 阅读(281) 评论(0) 推荐(0) 编辑

导航