Namespace: MPM.PDAG
Assembly: MPM.PDAG (in MPM.PDAG.dll) Version: 1.0.4428.15748

Syntax

C#
public static IEnumerable<IVertex> FlattenAndGetDistinctUpwards(
	this IEnumerable<IVertex> vertices,
	bool doNotIncludeLevel1
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function FlattenAndGetDistinctUpwards ( _
	vertices As IEnumerable(Of IVertex), _
	doNotIncludeLevel1 As Boolean _
) As IEnumerable(Of IVertex)
Visual C++
[ExtensionAttribute]
public:
static IEnumerable<IVertex^>^ FlattenAndGetDistinctUpwards(
	IEnumerable<IVertex^>^ vertices, 
	bool doNotIncludeLevel1
)

Parameters

vertices
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'IVertex>)>)>
doNotIncludeLevel1
Type: System..::..Boolean

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable<(Of <(<'IVertex>)>)>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also