最后发现服务器时间是2005年1月1日,少了近30天,修改后一切正常,

今天写程序,写到这里




使用Reflector反编译工具查看其实现

























我倒

后来,看了一下IndexOf,是调用数组的,但一看数组,也是一样的实现。
经过非常“深刻”的思考,哦,是自己使用不当,如果想通过 key 查找,用 System.Collections.Generic.Dictionary<K,V>最好,看看实现吧
private int FindEntry(K key) { if (key == null) { ThrowHelper.ThrowArgumentNullException(ExceptionArgument.key); } if (this.buckets != null) { int num1 = this.comparer.GetHashCode(key) & 0x7fffffff; for (int num2 = this.buckets[num1 % this.buckets.Length]; num2 >= 0; num2 = this.entries[num2].next) { if ((this.entries[num2].hashCode == num1) && this.comparer.Equals(key, this.entries[num2].key)) { return num2; } } } return -1; }