Automatonymous.Graphing.Edge.Edge C# (CSharp) Method

Edge() public method

public Edge ( Vertex from, Vertex to, string title ) : System
from Vertex
to Vertex
title string
return System
        public Edge(Vertex from, Vertex to, string title)
        {
            From = from;
            To = to;
            Title = title;
        }
Edge