Difference between revisions of "Namespace"

esse quam videri
Jump to: navigation, search
(Created page with " =Definition= =Relevance= =Explanation= =Resources= == See also == ==Notes== ==External Links== Category:Programming Language Concepts Category:Object Orient...")
 
 
Line 1: Line 1:
  
 
=Definition=
 
=Definition=
 
+
Namespaces are often used to organize elements, and to manage scope.
 
=Relevance=
 
=Relevance=
 +
In C#, a common namespace used is System.
 +
Example:
 +
System.Console.WriteLine();
  
 
=Explanation=
 
=Explanation=
Line 16: Line 19:
  
 
==External Links==
 
==External Links==
 
+
[[https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/namespaces | MSDN]]
 +
[[http://programmingisfun.com/c-namespaces | programmingisfun.com]]
  
  

Latest revision as of 00:18, 14 September 2019

Definition

Namespaces are often used to organize elements, and to manage scope.

Relevance

In C#, a common namespace used is System. Example: System.Console.WriteLine();

Explanation

Resources

See also

Notes

External Links

[| MSDN] [| programmingisfun.com]