using System.Collections.Generic;
using System.Threading.Tasks;
public class EmployeeDetail
public void set(string Name)
public static void Main()
EmployeeDetail ED=new EmployeeDetail();
Console.WriteLine("The Name of the Employee is: "+ED.get());
Console.Write("\nPress ENTER to Quit...");