Could anyone please help me with creating this C# programassignment?
Create a class object called “Employee” which included sixprivate variables:
• First Name
• Last Name
• ID number
• Initial Salary
• Start Year
• Current Salary
Also included methods:
• Constructors
• Properties (curSalary is a read-only).
• CalcCurSalary():Calculate the current salary based on a 5%yearly increment from the startYear.
Create an “EmployeeDemo” class with the main function. In themain function, the program prompts user to enter the current year.Then, the program reads three company employees information fromthe “EmployeeInfo.txt” file and save the data into three objects.After saving the data, the program prompts user to enter the rangeof current salary
OR
OR