Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

SingletonDictionary.cs

namespace Nop.Core.Infrastructure;

/// <summary>
/// Provides a singleton dictionary for a certain key and value type.
/// </summary>
/// <typeparam name="TKey">The type of key.</typeparam>
/// <typeparam name="TValue">The type of value.</typeparam>
public partial class SingletonDictionary<TKey, TValue> : Singleton<IDictionary<TKey, TValue>>
{
    static SingletonDictionary()
    {
        Singleton<Dictionary<TKey, TValue>>.Instance = new Dictionary<TKey, TValue>();
    }

    /// <summary>
    /// The singleton instance for the specified type T. Only one instance (at the time) of this dictionary for each type of T.
    /// </summary>
    public static new IDictionary<TKey, TValue> Instance => Singleton<Dictionary<TKey, TValue>>.Instance;
}