C# copyto方法的问题
staticvoidMain(string[]args){stringname="abcdefghi";char[]word=newchar[10];name.CopyT...
static void Main(string[] args)
{
string name = "abcdefghi";
char[] word = new char[10];
name.CopyTo(0,word,0,6);
Console.WriteLine(word);
Console.ReadLine();
}
输出是“abcdefaaaa”
数组的其他元素都是默认为a 吗
除了把new char[10]改为[6],还有什么办法输出"abcdef"? 展开
{
string name = "abcdefghi";
char[] word = new char[10];
name.CopyTo(0,word,0,6);
Console.WriteLine(word);
Console.ReadLine();
}
输出是“abcdefaaaa”
数组的其他元素都是默认为a 吗
除了把new char[10]改为[6],还有什么办法输出"abcdef"? 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏5(财富值+成长值)
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询