Fantasy
搜索结果

    显示/隐藏目录

    OneToManySortedDictionaryPool<TKey, TSortedKey, TValue> 类

    一对多映射关系的排序字典对象池。

    继承
    object
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>
    OneToManySortedDictionary<TKey, TSortedKey, TValue>
    OneToManySortedDictionaryPool<TKey, TSortedKey, TValue>
    实现
    IDictionary<TKey, SortedDictionary<TSortedKey, TValue>>
    ICollection<KeyValuePair<TKey, SortedDictionary<TSortedKey, TValue>>>
    IReadOnlyDictionary<TKey, SortedDictionary<TSortedKey, TValue>>
    IReadOnlyCollection<KeyValuePair<TKey, SortedDictionary<TSortedKey, TValue>>>
    IEnumerable<KeyValuePair<TKey, SortedDictionary<TSortedKey, TValue>>>
    IDictionary
    ICollection
    IEnumerable
    IDeserializationCallback
    ISerializable
    IDisposable
    IPool
    继承成员
    OneToManySortedDictionary<TKey, TSortedKey, TValue>.Contains(TKey)
    OneToManySortedDictionary<TKey, TSortedKey, TValue>.Contains(TKey, TSortedKey)
    OneToManySortedDictionary<TKey, TSortedKey, TValue>.TryGetValue(TKey, out SortedDictionary<TSortedKey, TValue>)
    OneToManySortedDictionary<TKey, TSortedKey, TValue>.TryGetValueBySortedKey(TKey, TSortedKey, out TValue)
    OneToManySortedDictionary<TKey, TSortedKey, TValue>.Add(TKey, TSortedKey, TValue)
    OneToManySortedDictionary<TKey, TSortedKey, TValue>.RemoveSortedKey(TKey, TSortedKey)
    OneToManySortedDictionary<TKey, TSortedKey, TValue>.RemoveKey(TKey)
    OneToManySortedDictionary<TKey, TSortedKey, TValue>.Clear()
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.Add(TKey, SortedDictionary<TSortedKey, TValue>)
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.Clear()
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.ContainsKey(TKey)
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.ContainsValue(SortedDictionary<TSortedKey, TValue>)
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.EnsureCapacity(int)
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.GetEnumerator()
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.GetObjectData(SerializationInfo, StreamingContext)
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.OnDeserialization(object)
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.Remove(TKey)
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.Remove(TKey, out SortedDictionary<TSortedKey, TValue>)
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.TrimExcess()
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.TrimExcess(int)
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.TryAdd(TKey, SortedDictionary<TSortedKey, TValue>)
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.TryGetValue(TKey, out SortedDictionary<TSortedKey, TValue>)
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.Comparer
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.Count
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.this[TKey]
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.Keys
    Dictionary<TKey, SortedDictionary<TSortedKey, TValue>>.Values
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    命名空间: Fantasy.DataStructure.Dictionary
    程序集: Fantasy.Net.dll
    语法
    public class OneToManySortedDictionaryPool<TKey, TSortedKey, TValue> : OneToManySortedDictionary<TKey, TSortedKey, TValue>, IDictionary<TKey, SortedDictionary<TSortedKey, TValue>>, ICollection<KeyValuePair<TKey, SortedDictionary<TSortedKey, TValue>>>, IReadOnlyDictionary<TKey, SortedDictionary<TSortedKey, TValue>>, IReadOnlyCollection<KeyValuePair<TKey, SortedDictionary<TSortedKey, TValue>>>, IEnumerable<KeyValuePair<TKey, SortedDictionary<TSortedKey, TValue>>>, IDictionary, ICollection, IEnumerable, IDeserializationCallback, ISerializable, IDisposable, IPool where TKey : notnull where TSortedKey : notnull
    类型参数
    名称 描述
    TKey

    外部字典中的键类型。

    TSortedKey

    内部字典中的排序键类型。

    TValue

    内部字典中的值类型。

    方法

    | 编辑本文 查看源代码

    Create()

    创建一个 OneToManySortedDictionaryPool<TKey, TSortedKey, TValue> 的实例。

    声明
    public static OneToManySortedDictionaryPool<TKey, TSortedKey, TValue> Create()
    返回
    类型 描述
    OneToManySortedDictionaryPool<TKey, TSortedKey, TValue>

    新创建的 OneToManySortedDictionaryPool 实例。

    | 编辑本文 查看源代码

    Dispose()

    释放当前实例及其资源。

    声明
    public void Dispose()
    | 编辑本文 查看源代码

    IsPool()

    获取一个值,该值指示当前实例是否为对象池中的实例。

    声明
    public bool IsPool()
    返回
    类型 描述
    bool
    | 编辑本文 查看源代码

    SetIsPool(bool)

    设置一个值,该值指示当前实例是否为对象池中的实例。

    声明
    public void SetIsPool(bool isPool)
    参数
    类型 名称 描述
    bool isPool

    实现

    IDictionary<TKey, TValue>
    ICollection<T>
    IReadOnlyDictionary<TKey, TValue>
    IReadOnlyCollection<T>
    IEnumerable<T>
    IDictionary
    ICollection
    IEnumerable
    IDeserializationCallback
    ISerializable
    IDisposable
    IPool

    扩展方法

    JsonHelper.ToJson<T>(T)
    DictionaryExtensions.TryRemove<T, TV>(IDictionary<T, TV>, T, out TV)
    • 编辑本文
    • 查看源代码
    本文内容
    Back to top Generated by DocFX