Click or drag to resize

ContainerHelperStructurallyEqual Method

Returns whether the input values are structurally equal according to the ~~ operator, beside attribute bearers and graphs, this esp. includes containers, then it returns whether this container and that container are memberwise deeply equal, which means the scalar members are equal, and object attributes are deeply equal. (If types are unequal the result is false. For graphs, it returns whether they are structurally equal.)

Namespace:  de.unika.ipd.grGen.libGr
Assembly:  libGr (in libGr.dll) Version: GrGen.NET 7.2
Syntax
C#
public static bool StructurallyEqual(
	Object this_,
	Object that,
	IDictionary<Object, Object> visitedObjects
)

Parameters

this_
Type: SystemObject
that
Type: SystemObject
visitedObjects
Type: System.Collections.GenericIDictionaryObject, Object

Return Value

Type: Boolean
See Also