Copy a string with clone option in C#

You can make use of clone() function for copying a string to another string.

using System;
using System.IO;
using System.Text;

namespace forgetCode
{
    class program1
    {
        static void Main(string[] args)
        {
            string firstString = "Forget code";
            
            string baby = firstString.Clone().ToString();
            Console.WriteLine(baby);
        }
   
    }
}


Output:
Forget code

..