Invoke an Overloaded Constructor through this keyword (What's the Different between this two Sample code?)
- by Alireza Dehqani
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main()
{
// Sample
Sample ob = new Sample(); // line1
// Output for line1
/*
* Sample(int i)
* Sample()
/
// Sample2
Sample2 ob2 = new…