Click here to Skip to main content
15,897,273 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
Why be used "USING" Namespace C#
Posted

Check this out: Using namespace directives[^]
 
Share this answer
 
Comments
TheRealSteveJudge 13-Feb-15 4:16am    
5*
A namespace is designed for providing a way to keep one set of names separate from another. The class names declared in one namespace will not conflict with the same class names declared in another.

The using keyword states that the program is using the names in the given namespace.

Try http://www.tutorialspoint.com/csharp/csharp_namespaces.htm[^].

Additional resources - Understanding the 'using' statement in C#[^] is another use of this keyword.
 
Share this answer
 
Comments
TheRealSteveJudge 13-Feb-15 4:16am    
Good summary! 5*
Abhinav S 13-Feb-15 4:17am    
Thank you.
TheRealSteveJudge 13-Feb-15 4:22am    
You're welcome!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900