Beispiel #1
0
        public IGexfNode AddChildNode(string id, string label)
        {
            GexfNode child = new GexfNode()
            {
                Id = id, Label = label
            };

            _nodes.Add(child);
            return(child);
        }
Beispiel #2
0
 public void Add(GexfNode node)
 {
     _nodes.Add(node);
 }