Saturday 2 December 2017

C# Program to Demonstrate Use of Clone


Code:

using System;
class Program
{
    static void Main()
    {
        string[] names = { "San", "Csharp", "Linux" };
        string[] clonenames = names.Clone() as string[];
        Console.WriteLine(string.Join(",", names));
        Console.WriteLine(string.Join(",", clonenames));
        Console.WriteLine();
        clonenames[0] = "SanFoundry";
        Console.WriteLine(string.Join(",", names));
        Console.WriteLine(string.Join(",", clonenames));
        Console.Read();
    }
}


Output:

San,Csharp,Linux
San,Csharp,Linux

San,Csharp,Linux
SanFoundry,Csharp,Linux


More C# Programs:


















100+ Best Home Decoration Ideas For Christmas Day 2019 To Make Home Beautiful

Best gifts for Christmas Day | Greeting cards for Christmas Day | Gift your children a new gift on Christmas day This Christmas d...