using System; public class Test { public static void Main() { int[] source = {1, 2, 3}; int[] copy = source; copy[0] = 9; Console.WriteLine(string.Join(",", source)); } }