using System.Collections.Generic;
using System.Threading.Tasks;
namespace Constructors_programs_by_Mahesh_Sir
string EName, Designation;
public override string ToString()
string Output = "Employee Id is = " + this.EmpId + "\n" + "Employee name = " + this.EName + "\n" + "Employee Designation = " + this.Designation + "\n" + "Employee Salary = " + this.Salary;
Employee_01 E1 = new Employee_01();