Click or drag to resize

TreeNodeExtensionsIsStructuralEquivalentToT, M Method

[Missing <summary> documentation for "M:Altaxo.Collections.TreeNodeExtensions.IsStructuralEquivalentTo``2(``0,``1,System.Func{``0,``1,System.Boolean})"]


Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static bool IsStructuralEquivalentTo<T, M>(
	this T tree1,
	M tree2,
	Func<T, M, bool> AreNodesEquivalent
)
where T : Object, ITreeNode<T>
where M : Object, ITreeNode<M>

Parameters

tree1  T

[Missing <param name="tree1"/> documentation for "M:Altaxo.Collections.TreeNodeExtensions.IsStructuralEquivalentTo``2(``0,``1,System.Func{``0,``1,System.Boolean})"]

tree2  M

[Missing <param name="tree2"/> documentation for "M:Altaxo.Collections.TreeNodeExtensions.IsStructuralEquivalentTo``2(``0,``1,System.Func{``0,``1,System.Boolean})"]

AreNodesEquivalent  FuncT, M, Boolean

[Missing <param name="AreNodesEquivalent"/> documentation for "M:Altaxo.Collections.TreeNodeExtensions.IsStructuralEquivalentTo``2(``0,``1,System.Func{``0,``1,System.Boolean})"]

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Altaxo.Collections.TreeNodeExtensions.IsStructuralEquivalentTo``2(``0,``1,System.Func{``0,``1,System.Boolean})"]

M

[Missing <typeparam name="M"/> documentation for "M:Altaxo.Collections.TreeNodeExtensions.IsStructuralEquivalentTo``2(``0,``1,System.Func{``0,``1,System.Boolean})"]

Return Value

Boolean

[Missing <returns> documentation for "M:Altaxo.Collections.TreeNodeExtensions.IsStructuralEquivalentTo``2(``0,``1,System.Func{``0,``1,System.Boolean})"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type T. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also