Class DataSetGraphExtensions
Extensions related to System.Data.DataSet and DataSetGraph.
Inheritance
System.Object
DataSetGraphExtensions
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: QuikGraph.Data
Assembly: QuikGraph.Data.dll
Syntax
public static class DataSetGraphExtensions
Methods
| Improve this Doc View SourceToGraph(DataSet)
Converts this dataSet
into a graph representation of it.
Declaration
public static DataSetGraph ToGraph(this DataSet dataSet)
Parameters
Type | Name | Description |
---|---|---|
System.Data.DataSet | dataSet | System.Data.DataSet to convert to graph. |
Returns
Type | Description |
---|---|
DataSetGraph | Graph representing the System.Data.DataSet. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
ToGraphviz(DataSetGraph)
Renders a graph to the Graphviz DOT format.
Declaration
public static string ToGraphviz(this DataSetGraph graph)
Parameters
Type | Name | Description |
---|---|---|
DataSetGraph | graph | Graph to convert. |
Returns
Type | Description |
---|---|
System.String | Graph serialized in DOT format. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|