static void Main(string[] args) { first_space.namespace_c1 fc = new first_space.namespace_c1(); second_space.namespace_c1 sc = new second_space.namespace_c1(); fc.func(); sc.func(); }
static void Main(string[] args) { first_space.namespace_c1 fc = new first_space.namespace_c1(); first_space.namespace_c2 fsc = new first_space.namespace_c2(); second_space.namespace_c1 sc = new second_space.namespace_c1(); fc.func(); fsc.func(); sc.func(); Console.WriteLine("The main method"); Console.ReadKey(); }