Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

อะไรคือความแตกต่างระหว่างวิธี String.Copy () และ String.CopyTo () ใน C #


String.CopyTo() วิธีการรับอักขระสตริงและวางลงในอาร์เรย์ กลุ่มของอักขระถูกคัดลอกจากสตริงต้นทางไปยังอาร์เรย์อักขระ

ต่อไปนี้เป็นวิธี Copy() -

ตัวอย่าง

using System;
class Demo {

   static void Main(String[] args) {
      string str = "This is it!";
      char[] ch = new char[5];

      str.CopyTo(2, ch, 0, 2);

      Console.WriteLine("Output...");
      Console.WriteLine(ch);
   }
}

ผลลัพธ์

Output...
is

String.Copy() สร้างวัตถุสตริงใหม่ที่มีเนื้อหาคล้ายกัน

ตัวอย่าง

using System;
class Demo {
   static void Main(String[] args) {

      string str1 = "Welcome!";
      string str2 = "user";
      str2 = String.Copy(str1);

      Console.WriteLine("Output...");
      Console.WriteLine(str2);
   }
}

ผลลัพธ์

Output...
Welcome!