Webiant Logo Webiant Logo
  1. No results found.

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

SingletonList.cs

namespace Nop.Core.Infrastructure;

/// <summary>
/// Provides a singleton list for a certain type.
/// </summary>
/// <typeparam name="T">The type of list to store.</typeparam>
public partial class SingletonList<T> : Singleton<IList<T>>
{
    static SingletonList()
    {
        Singleton<IList<T>>.Instance = new List<T>();
    }

    /// <summary>
    /// The singleton instance for the specified type T. Only one instance (at the time) of this list for each type of T.
    /// </summary>
    public static new IList<T> Instance => Singleton<IList<T>>.Instance;
}