public sealed class Customer { private string _name = string.Empty; public string Name { get => _name; set => Name = value.Trim(); } }