What is namespace

C# uses namespaces to organize the types.

The following code creates a namespace call MyNamespace and puts MyClass into it.


namespace MyNamespace{
   class MyClass{
   
   }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.