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

Vertex() 공개 메소드

public Vertex ( Type type, Type targetType, string title ) : System
type System.Type
targetType System.Type
title string
리턴 System
        public Vertex(Type type, Type targetType, string title)
        {
            VertexType = type;
            TargetType = targetType;
            Title = title;
        }
Vertex