Click or drag to resize

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

Parameters

typeInAssembly  Type
The type in the assembly which 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.Type,System.Boolean,System.Type[])"]

See Also