📅  最后修改于: 2020-10-31 03:26:35             🧑  作者: Mango
C#CopyTo()方法用于从字符串的指定位置复制指定数量的字符。它将此字符串的字符复制到char数组中。
public void CopyTo(int index, char[] ch, int start, int end)
index:它是整数类型的参数。它是字符串的索引。
ch:它是一个char类型的数组。
start:是char类型数组的起始索引。
end:是char类型数组的结束索引。
using System;
public class StringExample
{
public static void Main(string[] args)
{
string s1 = "Hello C#, How Are You?";
char[] ch = new char[15];
s1.CopyTo(10,ch,0,12);
Console.WriteLine(ch);
}
}
输出:
How Are You?