Find the property implementation bug.
csharp
public sealed class Customer
{
private string _name = string.Empty;
public string Name
{
get => _name;
set => Name = value.Trim();
}
}
public sealed class Customer
{
private string _name = string.Empty;
public string Name
{
get => _name;
set => Name = value.Trim();
}
}