Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions docs/csharp/programming-guide/namespaces/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ Namespaces have the following properties:

- They organize large code projects.
- They are delimited by using the `.` operator.
- The `using directive` obviates the requirement to specify the name of the namespace for every class.
- The `global` namespace is the "root" namespace: `global::System` will always refer to the .NET Framework namespace `System`.
- The `using` directive obviates the requirement to specify the name of the namespace for every class.
- The `global` namespace is the "root" namespace: `global::System` will always refer to the .NET <xref:System> namespace.

## C# Language Specification

Expand All @@ -50,4 +50,3 @@ Namespaces have the following properties:
- [using Directive](../../language-reference/keywords/using-directive.md)
- [:: Operator](../../language-reference/operators/namespace-alias-qualifer.md)
- [. Operator](../../language-reference/operators/member-access-operator.md)
>>>>>>> add identifier naming rules