Click or drag to resize

SolverSetupTLoadFromAssembly(AssemblyName, Boolean, Type) Method

Loads the available IIterativeSolverSetupT objects from the specified assembly.

Namespace: Altaxo.Calc.LinearAlgebra.Solvers
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static IEnumerable<IIterativeSolverSetup<T>> LoadFromAssembly(
	AssemblyName assemblyName,
	bool ignoreFailed = true,
	params Type[] typesToExclude
)

Parameters

assemblyName  AssemblyName
The AssemblyName of the assembly that should be searched for setup objects.
ignoreFailed  Boolean  (Optional)
If true, types that fail to load are simply ignored. Otherwise the exception is rethrown.
typesToExclude  Type
The IIterativeSolverT types that should not be loaded.

Return Value

IEnumerableIIterativeSolverSetupT

[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.Solvers.SolverSetup`1.LoadFromAssembly(System.Reflection.AssemblyName,System.Boolean,System.Type[])"]

See Also