C# | Clone() Method

In C#, Clone() is a String method. It is used to clone the string object, which returns another copy of that data.
In other words, it returns a reference to this instance of String. The return value will be only another view of the same data. Clone method called directly on current String instance. This method will not take any parameters.

Syntax:

public object Clone()

Return Value Type: System.Object or we can say this instance of String.

Below program illustrate the use of Clone() Method:




// C# program to illustrate 
// Clone() method
using System;
class Beginner {
  
    // Main Method
    public static void Main(string[] args)
    {
        string s1 = "w3wiki";
  
        // Cannot implicitly convert 
        // type object to the string.
        // So explicit conversion 
        // using Clone() method
        string s2 = (String)s1.Clone();
         
        // Displaying both the string
        Console.WriteLine("String : {0}", s1);
        Console.WriteLine("Clone String : {0}", s2);
    }
}


Output:

String : w3wiki
Clone String : w3wiki

Reference: https://msdn.microsoft.com/en-us/library/system.string.clone


Contact Us