Namespace Introduction : Namespace : Language Basics C# Examples


C# Examples » Language Basics » Namespace »

 

Namespace Introduction






The namespace provides a way to keep one set of names separate from another.
Names declared in one namespace will not conflict with the same names declared in another.
The namespace System is reserved for items in the .NET Framework class library.
The using keyword simply states that the program is using the names in the given namespace.




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Language Basics
» Namespace