using System;Class Program{ Public static void main(string[] args) { Employee[] employees = new employees[10]; //can I make like this: for (int i = 0;i < employees. length;i ++) {employees[i] = new employees[i, "Name" ];} } }Public class Employee { private int Id; private string name; Public Employee(int Id, string Name) { this.Id = Id; this.Name = Name; } }