Decision Variable Collection.Try Get Value Method
Gets the variable with the specified name.
Definition
Namespace: Numerics.NET.Optimization
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
true if the DecisionVariable named name was successfully removed from the collection; otherwise, false. This method also returns false if a DecisionVariable named name is not found in the original collection.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public bool TryGetValue(
string name,
out DecisionVariable value
)
Parameters
- name String
- The name of the DecisionVariable to get.
- value DecisionVariable
- When this method returns, the DecisionVariable named name; otherwise null.
Return Value
Booleantrue if the DecisionVariable named name was successfully removed from the collection; otherwise, false. This method also returns false if a DecisionVariable named name is not found in the original collection.