Skip to content

Instantly share code, notes, and snippets.

@enisn
Created May 7, 2020 21:03
Show Gist options
  • Save enisn/c5f47b1a572e1313eeb3b1d881711f01 to your computer and use it in GitHub Desktop.
Save enisn/c5f47b1a572e1313eeb3b1d881711f01 to your computer and use it in GitHub Desktop.
Challenge #2 - Solution - 6
// This will not work with nested object members.
var template = "Welcome back {Name}. You're logged in from {Profile.Address.Country.Code}. Have a good day.";
var user = new User { Name = "John", Email = "[email protected]" };
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