Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#에서 문자열을 다른 문자열로 복사하는 방법


문자열을 다른 문자열로 복사하려면 코드는 다음과 같습니다 -

예시

using System;
public class Demo {
   static public void Main(){
      string str1 = "Kevin";
      string str2 = String.Copy(str1);
      Console.WriteLine("String1 = "+str1);
      Console.WriteLine("String2 = "+str2);
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

String1 = Kevin
String2 = Kevin

예시

이제 다른 예를 살펴보겠습니다 -

using System;
public class Demo {
   static public void Main(){
      string str1 = "Maisie";
      string str2 = "Ryan";
      Console.WriteLine("String1 (Before copying) = "+str1);
      Console.WriteLine("String2 (Before copying) = "+str2);
      str2 = String.Copy(str1);
      Console.WriteLine("String1 = "+str1);
      Console.WriteLine("String2 (Updated) = "+str2);
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

String1 (Before copying) = Maisie String2 (Before copying) = Ryan
String1 = Maisie
String2 (Updated) = Maisie