Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Infrastructure;
///
/// Provides access to all "singletons" stored by .
///
public partial class BaseSingleton
{
static BaseSingleton()
{
AllSingletons = new Dictionary();
}
///
/// Dictionary of type to singleton instances.
///
public static IDictionary AllSingletons { get; }
}