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) 编辑