namespace?
What is namespace in .net?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sanjeeb LenkaPosted Jul 14, 2013, 4:59 PM
http://csharp-station.com/Tutorial/CSharp/Lesson06
Iftikar HussainPosted Jul 14, 2013, 5:12 AM
Consider a scenario. There are 2 classes both with the same name called mouse. One class refers to the animal mouse and the other refers to the computer mouse. So when you are calling mouse, how do you know, which to call. To avoid this conflict, we logically group simialr classes together to form containers called namespaces. In java, the equivalent of namespaces is packages.
Please refer the below link for more details
http://msdn.microsoft.com/en-us/library/ms973231.aspx#assenamesp_topic5
Regards,
Iftikar