Click or drag to resize

SolverSetupTLoadFromAssembly(Assembly, 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(
	Assembly assembly,
	bool ignoreFailed = true,
	params Type[] typesToExclude
)

Parameters

assembly  Assembly
The assembly which will 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.Assembly,System.Boolean,System.Type[])"]

See Also