Demonstrate the using directive : Using : Statement C# Examples


C# Examples » Statement » Using »

 

Demonstrate the using directive









    
using  System;  
  
using  Counter;  
  
namespace  Counter  {  
    class  MyClass  {  
    }  
}  
  
class  MainClass  {  
    public  static  void  Main()  {  
        MyClass  cd1  =  new  MyClass();  
    }  
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Statement
» Using