using System; class Program { static void Main(string[] args) { Person friend = Person.BuildNew(); Console.WriteLine($"Hello Mr. {friend.Name}!"); } class Person { public string Name { get; set; } static Person BuildNew() { return new () { Name = "Robot (src)" }; } } }