String Copy()

The C# Copy method is used to create a new instance of String with the same value as a specified String. It is a static method of String class. Its return type is string.

Signature

Example

public static string Copy(String str)

Parameter

str: it takes a string argument which is used to create a copy of specified string.

Return

It returns string object.

C# String Copy Method Example

Example

using System;  
    public class StringExample  
    {  
        public static void Main(string[] args)  
        {  
             string s1 = "Hello ";  
             string s2 = string.Copy(s1);
             Console.WriteLine(s1);
             Console.WriteLine(s2);
        }  
    }

Output:

Output

Hello
Hello

Input Required

This code uses input(). Please provide values below: