C# 中的克隆
如果您想克隆一个数组,那么在 C# 中克隆将非常有用。使用 C# 中的 Clone() 方法可创建数组的一个相似副本。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[];
广告