public string topic_name;
public technicalscripter(string topic_name, int article_no)
this.topic_name = topic_name;
this.article_no = article_no;
public technicalscripter(technicalscripter tech)
topic_name = tech.topic_name;
article_no = tech.article_no;
static void Main(string[] args)
technicalscripter t1 = new
technicalscripter("Copy Constructor", 38);
technicalscripter t2 = new
Console.WriteLine("The name of topic is: " + t2.topic_name + " and number of published article is: " +t2.article_no);