12 references to Lazy
Microsoft.Build (2)
RegisteredTaskObjectCacheBase.cs (2)
24private static readonly Lazy<ConcurrentDictionary<object, object>> s_appDomainLifetimeObjects = new Lazy<ConcurrentDictionary<object, object>>(); 29private Lazy<ConcurrentDictionary<object, object>> _buildLifetimeObjects = new Lazy<ConcurrentDictionary<object, object>>();
Microsoft.Extensions.DependencyInjection.Abstractions (1)
ActivatorUtilities.cs (1)
31private static readonly Lazy<ConditionalWeakTable<Type, ConstructorInfoEx[]>> s_collectibleConstructorInfos = new();
Microsoft.VisualStudio.LanguageServices.CSharp (2)
SemanticSearch\SemanticSearchQueryExecutor.cs (2)
32private readonly Lazy<ConcurrentStack<(DocumentId documentId, ImmutableArray<TextChange> changes)>> _lazyDocumentUpdates = new(); 33private readonly Lazy<ConcurrentDictionary<string, string?>> _lazyTextFileUpdates = new();
MSBuild (2)
RegisteredTaskObjectCacheBase.cs (2)
24private static readonly Lazy<ConcurrentDictionary<object, object>> s_appDomainLifetimeObjects = new Lazy<ConcurrentDictionary<object, object>>(); 29private Lazy<ConcurrentDictionary<object, object>> _buildLifetimeObjects = new Lazy<ConcurrentDictionary<object, object>>();
PresentationFramework (1)
MS\Internal\WindowsRuntime\Generated\WinRT.cs (1)
195private static Lazy<WinrtModule> _instance = new Lazy<WinrtModule>();
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\LazyOfTTMetadata.cs (1)
20base()
System.Security.Cryptography (2)
System\Security\Cryptography\DSAOpenSsl.cs (1)
20_key = new Lazy<SafeDsaHandle>();
System\Security\Cryptography\RSAOpenSsl.cs (1)
22_key = new Lazy<SafeEvpPKeyHandle>();
System.Xaml (1)
System\Xaml\AttachablePropertyServices.cs (1)
121new Lazy<ConditionalWeakTable<object, Dictionary<AttachableMemberIdentifier, object>>>();