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 |
What is the use of regex in c#?
What is mvc in c#?
Can you change the value of a variable while debugging a C# application?
What is strong data type in c#?
how encapsulation is implemented in c#
What are extensions in c#?
What is routing in c#?
Explain the difference between abstract class and interface.
Explain About disco and uddi
Can abstract class have parameterized constructor?
Explain the use of Mutex in C#?
0 Answers Sans Pareil IT Services,
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)