用C#克隆
如果要克隆数组,则在C#中进行克隆很有用。Clone()C#中的方法用于创建数组的相似副本。C#具有Clone方法和ICloneable接口。
我们来看一个使用Clone()方法克隆数组的示例-
示例
using System;
class Program {
static void Main() {
string[] arr = { "one", "two", "three", "four", "five" };
string[] arrCloned = arr.Clone() as string[];
Console.WriteLine(string.Join(",", arr));
Console.WriteLine(string.Join(",", arrCloned));
Console.WriteLine();
}
}输出结果
one,two,three,four,five one,two,three,four,five
上面,我们有一个字符串数组-
string[] arr = { "one", "two", "three", "four", "five" };这样,在一个新的字符串数组中,我们使用了Clone()带有“as”运算符的方法来复制数组-
string[] arrCloned = arr.Clone() as string[];
热门推荐
10 新人红包祝福语简短精辟
11 幼师给毕业祝福语简短
12 生日高考祝福语妹妹简短
13 下飞机祝福语简短英文
14 元宵发客户祝福语简短
15 爸妈金婚文案祝福语简短
16 新郎朋友红包祝福语简短
17 虎年五一祝福语大全简短
18 出阁宴祝福语姐姐简短