實現通用的 OrderedDictionary 並不是特別困難,但它不必要地耗費時間,坦率地說,這個類是 Microsoft 的一個巨大疏忽。有多種方法可以實現此目的,但我選擇使用 KeyedCollection 作為內部儲存。我還選擇實作各種方法來對 List
這是介面。請注意,它包括 System.Collections.Specialized.IOrderedDictionary,這是 Microsoft 提供的此介面的非通用版本。
// https://choosealicense.com/licenses/unlicense
// 或https://choosealicense.com/licenses/mit/
使用系統;
使用System.Collections .Generic;
using System.Collections.Specialized;
命名空間mattmc3.Common.Collections.Generic {
public interface IOrderedDictionary<TKey, TValue> : IDictionary<TKey, TValue>, IOrderedDictionary { new TValue this[int index] { get; set; } new TValue this[TKey key] { get; set; } new int Count { get; } new ICollection<TKey> Keys { get; } new ICollection<TValue> Values { get; } new void Add(TKey key, TValue value); new void Clear(); void Insert(int index, TKey key, TValue value); int IndexOf(TKey key); bool ContainsValue(TValue value); bool ContainsValue(TValue value, IEqualityComparer<TValue> comparer); new bool ContainsKey(TKey key); new IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator(); new bool Remove(TKey key); new void RemoveAt(int index); new bool TryGetValue(TKey key, out TValue value); TValue GetValue(TKey key); void SetValue(TKey key, TValue value); KeyValuePair<TKey, TValue> GetItem(int index); void SetItem(int index, TValue value); }
}
這是與幫助程式一起的實作類別:
// http://unlicense.org
使用System;
使用System.Collections.ObjectModel;
使用System.Diagnostics;
使用System.Collections;
使用System.Collections.Specialized;
使用System.Collections.Generic;
使用System.Linq;
命名空間mattmc. >
以上是為什麼在 C# 中實作通用 OrderedDictionary?的詳細內容。更多資訊請關注PHP中文網其他相關文章!