public Mang1chieu(Mang1chieu TempArray) { array = new int[TempArray.n]; for (int i = 0; i < TempArray.n; i++) { array[i] = TempArray.array[i]; } }
static void Main(string[] args) { Mang1chieu array = new Mang1chieu(); array.InPut(); array.OutPut(); array.TimSoChan(); Console.ReadKey(); }