Skip to content

Instantly share code, notes, and snippets.

@enisn
Created May 7, 2020 20:58
Show Gist options
  • Save enisn/4837d3506e518b2e079f3777037d5c05 to your computer and use it in GitHub Desktop.
Save enisn/4837d3506e518b2e079f3777037d5c05 to your computer and use it in GitHub Desktop.
Challenge #2 - Solution - 5
var template = "Welcome back {Name}. You're authenticated as {Email}. 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