Field LoadedAssemblies
A thread-safe dictionary that stores loaded assemblies, keyed by their names.
public static readonly ConcurrentDictionary<string, Assembly> LoadedAssemblies
Returns
- ConcurrentDictionary<string, Assembly>
- A thread-safe dictionary that stores loaded assemblies, keyed by their names.
Remarks
This dictionary is used to manage and retrieve assemblies that have been loaded into the application. It ensures thread-safe access and modification, making it suitable for concurrent operations.