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