4
Answers

NP127 namespace confusion

Hi Guys

 

NP127 namespace confusion

 

Name namespace is used in two occasions. One is when we are indicating following using statements we use the word namespace.

 

using System;

using System.Windows.Forms;

 

Other occasion is classes can be enclosed in the namespace in following way.

 

namespace XXXXXXXX

{

  

}

 

What is the reason for that? Please explain.

  

Thank you

Answers (4)