Assign null to myHouse (myHouse will no longer reference an object) : Null : Class C# Examples


C# Examples » Class » Null »

 

Assign null to myHouse (myHouse will no longer reference an object)









    
class  House
{
    public  string  make;
    public  string  model;
    public  string  color;
    public  int  yearBuilt;

    public  void  Start()
    {
        System.Console.WriteLine(model  +  "  started");
    }

    public  void  Stop()
    {
        System.Console.WriteLine(model  +  "  stopped");
    }

}

class  MainClass
{
    public  static  void  Main()
    {
        House  myHouse;
        myHouse  =  new  House();
        myHouse  =  null;
    }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Class
» Null