Solution: Employee Directory Formatter

Review the implementation of overriding the virtual ToString method inherited from System.Object.

Solution: Employee Directory Formatter

Review the implementation of overriding the virtual ToString method inherited from System.Object.
C# 14.0
namespace HRSystems;
public class Employee
{
public required string FirstName { get; init; }
public required string LastName { get; init; }
public required string Department { get; init; }
public override string ToString()
{
return $"{LastName}, {FirstName} ({Department})";
}
}