- Чтобы создать совершенно новый массив с тем же содержимым (как поверхностная копия): вызовите
Array.Clone
и просто приведите результат.
- Чтобы скопировать часть строкового массива в другой строковый массив: вызовите
Array.Copy
или Array.CopyTo
Например:
using System;
class Test
{
static void Main(string[] args)
{
// Clone the whole array
string[] args2 = (string[]) args.Clone();
// Copy the five elements with indexes 2-6
// from args into args3, stating from
// index 2 of args3.
string[] args3 = new string[5];
Array.Copy(args, 2, args3, 0, 5);
// Copy whole of args into args4, starting from
// index 2 (of args4)
string[] args4 = new string[args.Length+2];
args.CopyTo(args4, 2);
}
}
Предполагая, что мы начинаем с args = { "a", "b", "c", "d", "e", "f", "g", "h" }
, получаем следующие результаты:
args2 = { "a", "b", "c", "d", "e", "f", "g", "h" }
args3 = { "c", "d", "e", "f", "g" }
args4 = { null, null, "a", "b", "c", "d", "e", "f", "g", "h" }