本文整理汇总了C#中System.Array.Clone方法的典型用法代码示例。如果您正苦于以下问题:C# Array.Clone方法的具体用法?C# Array.Clone怎么用?C# Array.Clone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Array
的用法示例。
在下文中一共展示了Array.Clone方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
//引入命名空间
using System;
using System.Globalization;
public class SamplesArray {
public static void Main() {
// Create and initialize a new CultureInfo array.
CultureInfo ci0 = new CultureInfo( "ar-SA", false );
CultureInfo ci1 = new CultureInfo( "en-US", false );
CultureInfo ci2 = new CultureInfo( "fr-FR", false );
CultureInfo ci3 = new CultureInfo( "ja-JP", false );
CultureInfo[] arrCI = new CultureInfo[] { ci0, ci1, ci2, ci3 };
// Create a clone of the CultureInfo array.
CultureInfo[] arrCIClone = (CultureInfo[]) arrCI.Clone();
// Replace an element in the clone array.
CultureInfo ci4 = new CultureInfo( "th-TH", false );
arrCIClone[0] = ci4;
// Display the contents of the original array.
Console.WriteLine( "The original array contains the following values:" );
PrintIndexAndValues( arrCI );
// Display the contents of the clone array.
Console.WriteLine( "The clone array contains the following values:" );
PrintIndexAndValues( arrCIClone );
// Display the DateTimeFormatInfo.DateSeparator for the fourth element in both arrays.
Console.WriteLine( "Before changes to the clone:" );
Console.WriteLine( " Original: The DateTimeFormatInfo.DateSeparator for {0} is {1}.", arrCI[3].Name, arrCI[3].DateTimeFormat.DateSeparator );
Console.WriteLine( " Clone: The DateTimeFormatInfo.DateSeparator for {0} is {1}.", arrCIClone[3].Name, arrCIClone[3].DateTimeFormat.DateSeparator );
// Replace the DateTimeFormatInfo.DateSeparator for the fourth element in the clone array.
arrCIClone[3].DateTimeFormat.DateSeparator = "-";
// Display the DateTimeFormatInfo.DateSeparator for the fourth element in both arrays.
Console.WriteLine( "After changes to the clone:" );
Console.WriteLine( " Original: The DateTimeFormatInfo.DateSeparator for {0} is {1}.", arrCI[3].Name, arrCI[3].DateTimeFormat.DateSeparator );
Console.WriteLine( " Clone: The DateTimeFormatInfo.DateSeparator for {0} is {1}.", arrCIClone[3].Name, arrCIClone[3].DateTimeFormat.DateSeparator );
}
public static void PrintIndexAndValues( Array myArray ) {
for ( int i = myArray.GetLowerBound(0); i <= myArray.GetUpperBound(0); i++ )
Console.WriteLine( "\t[{0}]:\t{1}", i, myArray.GetValue( i ) );
}
}
输出:
The original array contains the following values: [0]: ar-SA [1]: en-US [2]: fr-FR [3]: ja-JP The clone array contains the following values: [0]: th-TH [1]: en-US [2]: fr-FR [3]: ja-JP Before changes to the clone: Original: The DateTimeFormatInfo.DateSeparator for ja-JP is /. Clone: The DateTimeFormatInfo.DateSeparator for ja-JP is /. After changes to the clone: Original: The DateTimeFormatInfo.DateSeparator for ja-JP is -. Clone: The DateTimeFormatInfo.DateSeparator for ja-JP is -.
示例2: Main
//引入命名空间
using System;
using System.Collections.Generic;
public class Starter {
public static void Main() {
CommissionedEmployee[] salespeople =
{new CommissionedEmployee("Bob"),
new CommissionedEmployee("Ted"),
new CommissionedEmployee("Sally")};
Employee[] employees =
(Employee[])salespeople.Clone();
foreach (Employee person in
employees) {
person.Pay();
}
}
}
public class Employee {
public Employee(string name) {
m_Name = name;
}
public virtual void Pay() {
Console.WriteLine("Paying {0}", m_Name);
}
private string m_Name;
}
public class CommissionedEmployee : Employee {
public CommissionedEmployee(string name) :
base(name) {
}
public override void Pay() {
base.Pay();
Console.WriteLine("Paying commissions");
}
}