Which keyword is used to call the predefined namespace to your application?
Answers
Answered by
0
nickname keyword is used
Answered by
0
using System;
namespace first_space {
class namespace_cl {
public void func() {
Console.WriteLine("Inside first_space");
}
}
}
namespace second_space {
class namespace_cl {
public void func() {
Console.WriteLine("Inside second_space");
}
}
}
class TestClass {
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();
}
}
Please check screenshot for formatted asnwer :)
Please check screenshot for formatted asnwer :)
Attachments:
Similar questions
Math,
7 months ago
Political Science,
1 year ago
Math,
1 year ago
Math,
1 year ago
Social Sciences,
1 year ago