Click or drag to resize

ModelingUtils.UpdateListFromModelingList<T1, T2> Method

Updates a list (toList) of objects based on another (fromList). Using the comparison function, each object is considered as missing (and then created using the creation function), as already existing (then updated using the update function) or as obsolete (then removed from toList).

Namespace:  Packflow.Modeling
Assembly:  MicaSystems.Packflow.Core (in MicaSystems.Packflow.Core.dll) Version: 1.0.0.0 (3.2.0.306)
Syntax
C#
public static void UpdateListFromModelingList<T1, T2>(
	ModelingList<T1> fromList,
	ModelingList<T2> toList,
	Func<T1, T2, bool> compareFunction,
	Func<T1, T2> createFunction,
	Action<T1, T2> updateFunction
)
where T1 : ModelingObject
where T2 : ModelingObject

Parameters

fromList
Type: Packflow.Modeling.ModelingList<T1>
toList
Type: Packflow.Modeling.ModelingList<T2>
compareFunction
Type: System.Func<T1, T2, Boolean>
createFunction
Type: System.Func<T1, T2>
updateFunction
Type: System.Action<T1, T2>

Type Parameters

T1
T2
See Also