C# directed graph generating library
A little late, but it’s actually relatively easy to implement yourself: public class DGMLWriter { public struct Graph { public Node[] Nodes; public Link[] Links; } public struct Node { [XmlAttribute] public string Id; [XmlAttribute] public string Label; public Node(string id, string label) { this.Id = id; this.Label = label; } } public struct Link … Read more