Hi all,here is the code c# Array.Copy,what does the o means in the code block?
using System;
class Program
Hi all what does the 0 means in the code block?
using System;
class Program
{
static void Main()
{
int[] values1 = { 4, 4, 4 };
int[] values2 = { 5, 5 };
int[] all = new int[values1.Length + values2.Length];
Array.Copy(values1, all, values1.Length);
Array.Copy(values2, 0, all, values1.Length, values2.Length);
foreach (int value in all)
{
Console.WriteLine(value);
}
}