ReadFromTxtFile() public method

public ReadFromTxtFile ( string file ) : void
file string
return void
Exemplo n.º 1
0
        private void ReadGraphFromATextFile_Click(object sender, EventArgs e)
        {
            openInputTxt.ShowDialog();
            string file = openInputTxt.FileName;

            G = new DGraph();
            G.ReadFromTxtFile(file);
        }