static void Main(string[] args) { first_space.namespace_cl fc = new first_space.namespace_cl(); second_space.namespace_cl sc = new second_space.namespace_cl(); fc.func(); sc.func(); }
static void Main(string[] args) { first_space.namespace_cl fc = new first_space.namespace_cl(); second_space.namespace_cl sc = new second_space.namespace_cl(); fc.func(); sc.func(); Console.ReadKey(); }
static void Main(string[] args) { first_space.namespace_cl fc = new first_space.namespace_cl(); //creating an object second_space.namespace_cl sc = new second_space.namespace_cl(); fc.func(); //calling function sc.func(); Console.ReadKey(); }
static void Main(string[] args) { namespace_1.namespace_cl fc = new namespace_1.namespace_cl(); second_space.namespace_cl sc = new second_space.namespace_cl(); fc.func(); sc.func(); Console.ReadKey(); }
public void NAMESPACES_M() { Console.WriteLine("\t\t\tNamespaces"); first_space.namespace_cl fc = new first_space.namespace_cl(); second_space.namespace_cl sc = new second_space.namespace_cl(); fc.func(); sc.func(); Program.CheckReturnToContent(); }