首頁 >後端開發 >C++ >為什麼在 C# 中實作通用 OrderedDictionary?

為什麼在 C# 中實作通用 OrderedDictionary?

Linda Hamilton
Linda Hamilton原創
2025-01-01 00:45:09751瀏覽

Why Implement a Generic OrderedDictionary in C#?

實現通用的 OrderedDictionary 並不是特別困難,但它不必要地耗費時間,坦率地說,這個類是 Microsoft 的一個巨大疏忽。有多種方法可以實現此目的,但我選擇使用 KeyedCollection 作為內部儲存。我還選擇實作各種方法來對 List 進行排序。確實如此,因為這本質上是 IList 和 IDictionary 的混合體。

這是介面。請注意,它包括 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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn