using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ContructorChaining
{
class AdditionOdMultipleNum
{
public AdditionOdMultipleNum(int a)
{
Console.WriteLine("sum of {0},1 is : {1}", a, (a + 1));
}
public AdditionOdMultipleNum(int a,int b)
:this(a)
{
Console.WriteLine("sum of {0},{1} is : {2}", a, b, (a + b));
}
public AdditionOdMultipleNum(int a,int b,int c)
:this(a ,b)
{
Console.WriteLine("sum of {0},{1},{2} is : {3}", a, b, c, (a + b + c));
}
}
class Program
{
static void Main(string[] args)
{
AdditionOdMultipleNum addnum = new AdditionOdMultipleNum(2, 2, 6);
Console.ReadKey(true);
}
}
}
In above example the output shown by the program, is 3,4,10 So, is it possible to see output in fashion 10,4,3
In other words can I change the order of execution of constructors i.e. Constructor with 3 parameters(with output) then it calls Constructor with 2 parameters(with output) finally it calls Constructor with 1 parameters(with output)
This sort of chaining is not directly possible; however you may be able to accomplish something similar with a factory method:
Now you could call
This will result in the output in the desired order
10, 4, 3