Program.cs 374 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace DickstraMethodd
  7. {
  8. internal class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. DickstraMethod obj = new DickstraMethod("graph.txt");
  13. obj.Dickstra();
  14. Console.ReadKey();
  15. }
  16. }
  17. }