what is namespace?
Answers were Sorted based on User's Feedback
namespace is collection of different types of classes
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / payal mehta
Namespace is naming schema in which we can organize no. of
classes.Using that classes we can use or inherit properties
and methodes in our application.Namespace also can contain
number of assemblies.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / komilla shaheen
Namespace is logical unit of all classes .Namespace can
span multiple assemblies.
eg.System.Web.UI logically group all UI related features.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / venkat2050
namespace is nothing but the call method of funcion which
need to be envoked when you need to adde some of the
function so we call by using the namespace
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / jyothish vakkom
namespace
{
class 1
{
}
class2
{
}
.....
.....
.....
}
got d idea???
Is This Answer Correct ? | 0 Yes | 1 No |
How do you prevent a class from being inherited?
Explain manifest & metadata.
What is the C# syntax to catch any possible exception?
Why ienumerable is used in c#?
Can a dictionary have duplicate keys c#?
What is difference between a type and class?
How will you allow a class to be inherited, but prevent the method from being over-ridden?
What is an ienumerable in c#?
What is string in c# net?
What is null in database?
What is meant by collections in c#?
What is a function c#?