LocalSolverSettingsFind(PredicateSolverSettings) Method

Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire list.

Linear searching, o(n), so use with care.

Definition

Namespace: DHI.Mike1D.HDParameterDataAccess
Assembly: DHI.Mike1D.HDParameterDataAccess (in DHI.Mike1D.HDParameterDataAccess.dll) Version: 24.0.0.0 (11.1.1.1111)
C#
public SolverSettings Find(
	Predicate<SolverSettings> match
)

Parameters

match  PredicateSolverSettings
The System.Predicate delegate that defines the conditions of the element to search for.

Return Value

SolverSettings
The first element that matches the conditions defined by the specified predicate, if found; otherwise null.

See Also