Click or drag to resize

graphToolsBuildGraphFromPathsT Method

imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Builds the graph from paths. Created graph has artificial root node (outside first node of the paths)

Namespace:  imbSCI.Data.collection.graph
Assembly:  imbSCI.Data (in imbSCI.Data.dll) Version: 0.3.70.
Syntax
C#
public static T BuildGraphFromPaths<T>(
	this IEnumerable<string> inputList,
	string splitter = ""
)
where T : new(), IGraphNode
Request Example View Source

Parameters

inputList
Type: System.Collections.GenericIEnumerableString
The input list.
splitter (Optional)
Type: SystemString
The splitter.

Type Parameters

T

Return Value

Type: T

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableString. 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