String.CopyTo()方法获取字符串字符并将其放入数组中。一组字符从源字符串复制到字符数组中。
以下是Copy()
方法-
using System; class Demo { static void Main(String[] args) { string str = "就是这个!"; 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!