Namespace Introduction : Namespace « Language Basics « C# / CSharp Tutorial
C# / CSharp Tutorial
1.
Language Basics
2.
Data Type
3.
Operator
4.
Statement
5.
String
6.
struct
7.
Class
8.
Operator Overload
9.
delegate
10.
Attribute
11.
Data Structure
12.
Assembly
13.
Date Time
14.
Development
15.
File Directory Stream
16.
Preprocessing Directives
17.
Regular Expression
18.
Generic
19.
Reflection
20.
Thread
21.
I18N Internationalization
22.
GUI Windows Forms
23.
2D
24.
Design Patterns
25.
Windows
26.
XML
27.
ADO.Net
28.
Network
29.
Directory Services
30.
Security
31.
unsafe
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
C# / CSharp Tutorial
»
Language Basics
»
Namespace
1. 5. 1. 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.
1. 5. Namespace
1. 5. 1.
Namespace Introduction
1. 5. 2.
Full qualify name
1. 5. 3.
Simplest namespace with class definition
1. 5. 4.
Declare a namespace
1. 5. 5.
Demonstrate a namespace.
1. 5. 6.
Use fully qualified class name
1. 5. 7.
Two levels of Namespaces
1. 5. 8.
Namespace with dot
1. 5. 9.
Rename the namespaces
1. 5. 10.
Namespaces prevent name conflicts
1. 5. 11.
Namespaces are additive.
1. 5. 12.
Namespaces can be nested
1. 5. 13.
Demonstrate the :: qualifier.
1. 5. 14.
The use of two namespaces
1. 5. 15.
The use of namespace hierarchies
1. 5. 16.
Creates a namespace with a single class
1. 5. 17.
Same class name under different Namespaces
w___w__w__._j__a___v___a__2__s.__c__om
|
Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.