Thursday, 29 September 2016

Copy Constructor


Copy Constructor : The feature is that , C# allow us to copy constructor .


Example 1
class myclass
{
    // Copy constructor.
    public myclass(myclass previousPerson)
    {
        Name = previousPerson.Name;
        address = previousPerson.Age;
    }

    // Instance constructor.
    public myclass(string name, int age)
    {
        Name = name;
        address = age;
    }
    public string address { get; set; }
    public string Name { get; set; }       
}

Here myclass is iniatialised , passing Name and address ,then the constructor is passed to another constructor is passed during initialization .This behaviors is known as copy constructor.

No comments:

Post a Comment

বাঙালির বেড়ানো সেরা চারটি ঠিকানা

  বাঙালি মানে ঘোড়া পাগল | দু একদিন ছুটি পেলো মানে বাঙালি চলল ঘুরতে | সে সমুদ্রই হোক , পাহাড়ি হোক বা নদী হোক। বাঙালির ...