Beispiel #1
0
 //----------------*Displays Requirement 5*-------------------//
 static void displayRequirement2(List <CsNode <string, string> > nodes)
 {
     Console.WriteLine("\n**Identifying the file dependences with respect to the namespaces and aliases**");
     Console.WriteLine("**This is done by parsing the file twice**");
     Console.WriteLine("**Each file is checked against the types(classe, enum, delegate, interface, struct) of another file**");
     Console.WriteLine("\nDemonstrating Requirement 5:");
     Console.WriteLine("Displaying the dependences between the given input files");
     Console.WriteLine("--------------------------------------------------------------------");
     Display.showDependences(nodes);
 }