Automatonymous.Graphing.Edge.Edge C# (CSharp) 메소드

Edge() 공개 메소드

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