Clusterizator.Krab.GraphManager.GraphManager C# (CSharp) 메소드

GraphManager() 공개 메소드

Initializes a new instance of the GraphManager class.
public GraphManager ( List connections, List elements ) : System.Collections.Generic
connections List /// The connections. ///
elements List /// The elements. ///
리턴 System.Collections.Generic
        public GraphManager(List<Connection> connections, List<GraphElement> elements)
        {
            Connections = connections;
            Elements = elements;
        }