c# 里的copyto用法,求举例解释

 我来答
greystar_cn
2015-07-03 · 知道合伙人软件行家
greystar_cn
知道合伙人软件行家
采纳数:16407 获赞数:17260
本人主要从事.NET C#方向的技术开发工作,具有10多年的各类架构开发工作经验。

向TA提问 私信TA
展开全部
COPYTO 是哪方面的?
using System;

public class CopyToTest {
public static void Main() {

// Embed an array of characters in a string
string strSource = "changed";
char [] destination = { 'T', 'h', 'e', ' ', 'i', 'n', 'i', 't', 'i', 'a', 'l', ' ',
'a', 'r', 'r', 'a', 'y' };

// Print the char array
Console.WriteLine( destination );

// Embed the source string in the destination string
strSource.CopyTo ( 0, destination, 4, strSource.Length );

// Print the resulting array
Console.WriteLine( destination );

strSource = "A different string";

// Embed only a section of the source string in the destination
strSource.CopyTo ( 2, destination, 3, 9 );

// Print the resulting array
Console.WriteLine( destination );
}
}

数组类的一般都是COPY到另一个目标,从哪个位置开始到哪个索引结束(就是可以选择复制一段) 到另一目标的哪个位置
追问
用在字符串哪里怎么用?大神可不可以给点中文解释,我是英语渣来的
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式