Call Constructor in the same class using 'this' : This : Class C# Examples


C# Examples » Class » This »

 

Call Constructor in the same class using 'this'









    
using  System;
class  MyObject
{
        public  MyObject(int  x)
        {
                this.x  =  x;
        }
        public  MyObject(int  x,  int  y):  this(x)
        {
                this.y  =  y;
        }
        public  int  X
        {
                get
                {
                        return(x);
                }
        }
        public  int  Y
        {
                get
                {
                        return(y);
                }
        }
        int  x;
        int  y;
}
class  MainClass
{
        public  static  void  Main()
        {
                MyObject  my  =  new  MyObject(10,  20);
                Console.WriteLine("x  =  {0},  y  =  {1}",  my.X,  my.Y);
        }
}
    
   
  
   



Output

x = 10, y = 20


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Class
» This