Skip to content

Instantly share code, notes, and snippets.

@enisn
Last active August 2, 2022 07:45
Show Gist options
  • Save enisn/45b77430406728388e750aa6572946f2 to your computer and use it in GitHub Desktop.
Save enisn/45b77430406728388e750aa6572946f2 to your computer and use it in GitHub Desktop.
Challenge #2 - Solution - 7
// This will work perfectly for nested objects.
var template = "Welcome back {Name}. You're logged in from {Profile.Address.Country.Code}. Have a good day.";
var user = new User { Name = "John", Address = new Address { Country = new Country { Code = "US" } } };
var message = template.BindObjectProperties(user);
Console.WriteLine(message);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment