NetworkDataTAddValue(ILocation, T) Method

Add a value on the given location.

Definition

Namespace: DHI.Mike1D.Generic
Assembly: DHI.Mike1D.Generic (in DHI.Mike1D.Generic.dll) Version: 24.0.0.0 (11.1.1.1111)
C#
public bool AddValue(
	ILocation location,
	T value
)

Parameters

location  ILocation
Location of the value.
value  T
Value at location

Return Value

Boolean
True on success.

Implements

INetworkDataTAddValue(ILocation, T)

Remarks

Adding like this is generally an O(n) operation. If adding in chainage increasing order, it is fast.

See Also