Exemple #1
0
 public override object Clone()
 {
     var n = new NamedArc(this.Graph, this.Tail.Value, this.Head.Value, this._name);
     this.CopyTo(n);
     return n;
 }
 public NamedArcWrapper(IGraphWrapper graphWrapper, NamedArc arc)
     : base(graphWrapper, arc)
 {
 }