Exemplo n.º 1
0
        public GrafoCB(bool carregarArquivo)
        {
            this.Vertices = new List <Vertice>();
            this.Arestas  = new List <Aresta>();

            Uteis.lerGrafoArquivo(this);
        }
Exemplo n.º 2
0
 public void atualizarGrafo()
 {
     Uteis.lerGrafoArquivo(this);
 }