2012年2月21日
摘要: private void Insert(TKey key, TValue value, bool add){ if (key == null) { ThrowHelper.ThrowArgumentNullException(ExceptionArgument.key); } if (this.buckets == null) { this.Initialize(0); } int num = this.comparer.GetHashCode(key) & 2147483647; int num2 = num % t... 阅读全文
posted @ 2012-02-21 20:28 一路转圈的雪人 阅读(765) 评论(0) 推荐(0) 编辑