コード例 #1
0
ファイル: DotGraphBuilder.cs プロジェクト: vakym/graphconfig
 public static GraphProperties NondirectedGraph(string graphName)
 {
     graphProperties = new GraphProperties(graphName, false);
     return(graphProperties);
 }
コード例 #2
0
ファイル: DotGraphBuilder.cs プロジェクト: vakym/graphconfig
 public static GraphProperties DirectedGraph(string graphName)
 {
     graphProperties = new GraphProperties(graphName, true);
     return(graphProperties);
 }