Ejemplo n.º 1
0
        public XmlGraphNode CreateNode(string id = null)
        {
            var node = new XmlGraphNode(this, id ?? Guid.NewGuid().ToString());

            _nodes.Add(node.Id, node);
            return(node);
        }
Ejemplo n.º 2
0
 public XmlGraphLink(XmlGraphNode target)
 {
     this.Target = target;
 }