0 votes
in C Sharp by
Explain Copy constructor in C#?

1 Answer

0 votes
by
If the constructor contains the same class in the constructor parameter then it is called as copy constructor.

class MyClass

{

 public string prop1, prop2;

 public MyClass(string a, string b)

 {

 prop1 = a;

 prop2 = b;

 }

 

 public MyClass(MyClass myobj) // Copy Constructor

 {

 prop1 = myobj.prop1;

 prop2 = myobj.prop2;

 }

}

Related questions

+1 vote
asked Jul 16, 2019 in C Plus Plus by Indian
+1 vote
+1 vote
0 votes
asked Oct 18, 2019 in C Sharp by Robin
...