Skip to content

Instantly share code, notes, and snippets.

View Pilchie's full-sized avatar
🏠
Working from home

Kevin Pilch Pilchie

🏠
Working from home
View GitHub Profile
class Program
{
static void Main(string[] args)
{
var view = new MyView();
view.Bind/*<MyViewModel, MyView, int>*/(view.ViewModel, vm => vm.Prop1, v => v.Prop2);
}
}
class MyViewModel