static void Main(string[] args) { FileFinder filef = new FileFinder(); args = filef.get_cs(); CsGraph<string, string> csGraph = new CsGraph<string, string>("Dep_Table"); csGraph = csGraph.Creat_Graph(args); csGraph.showDependencies(); Console.Write("\n\n Strong Conponent Shows Below: "); csGraph.sc_finder(); csGraph.show(); Console.Write("\n\n"); Console.ReadKey(); }