Click or drag to resize

ReflectionServiceGetDependendAssemblies(Assembly, IEnumerableAssembly) Method

Gets a list of currently loaded assemblies that are dependend on the given base assembly. The base assembly is also in the returned list.

Namespace: Altaxo.Main.Services
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static IEnumerable<Assembly> GetDependendAssemblies(
	Assembly baseAssembly,
	IEnumerable<Assembly> assembliesToTest
)

Parameters

baseAssembly  Assembly
The base assembly.
assembliesToTest  IEnumerableAssembly
All assemblies that should be tested for dependence on the base assembly.

Return Value

IEnumerableAssembly
All assemblies, that are currently loaded and that references the given base assembly. The base assembly is also in the returned list.
See Also