public static void Main()
int[] array = new int [8];
int[] array2 = new int [8];
Console.WriteLine("Выберите действие");
Console.WriteLine("1 - Добавить сотрудника");
Console.WriteLine("2 - Удалить сотрудника");
Console.WriteLine("3 - Посмотреть список сотрудников");
int d = int.Parse(Console.ReadLine());
Console.WriteLine("Введите имя сотрудника");
array[i]=int.Parse(Console.ReadLine());
Console.WriteLine("Введите номер сотрудника");
array2[i]=int.Parse(Console.ReadLine());
Console.WriteLine("Введите номер сотрудника, которого вы хотите удалить");
int del = int.Parse(Console.ReadLine());
foreach (int item in array)
Console.WriteLine(item + " ");