EngineNodesFind Method (PredicateEngineNode) | 
 
            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.
            
 
    Namespace: 
   DHI.Mike1D.Engine
    Assembly:
   DHI.Mike1D.Engine (in DHI.Mike1D.Engine.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntaxpublic EngineNode Find(
	Predicate<EngineNode> match
)
Public Function Find ( 
	match As Predicate(Of EngineNode)
) As EngineNode
public:
EngineNode^ Find(
	Predicate<EngineNode^>^ match
)
Parameters
- match
 - Type: SystemPredicateEngineNode
The System.Predicate delegate that defines the conditions of the element to search for. 
Return Value
Type: 
EngineNodeThe first element that matches the conditions defined by the specified predicate, if found; otherwise null.
See Also