Namespace is an entity of .Net framework which is used to group similar type of utilities.
Like -> System.Drowing;
There are two types of namespace-
1. Qualified namespace-
When we use full namespace of the system.
Like- System.drowing.point;
2. Unqualified namespace-
When we do not use full namespace of the system
Instead of we create directive for
namespace and utility are directly use.
Like- using System.drowing;
Points;
No comments :
Post a Comment
Ask a Question?