Graph.Graph C# (CSharp) Method

Graph() public method

public Graph ( string convo_file ) : System.Collections
convo_file string
return System.Collections
    public Graph(string convo_file)
    {
        nodes = new ArrayList();
        edges = new ArrayList();
        graph = new Dictionary<Node, ArrayList>();

        readInConversation(convo_file);
    }