19 lines
755 B
C#
19 lines
755 B
C#
namespace Nop.Core.Infrastructure;
|
|
|
|
/// <summary>
|
|
/// Provides a singleton dictionary for a certain key and vlaue 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;
|
|
} |