I have a property that is of type DateTime that I would like to bind to a viewmodel. When I bind the property I am getting and error stating that the binding type must be a reference type. How can I bind this property to my viewmodel and be notified of it's changes?
Specifically, the code that is causing the compiler error looks like this:
set.Bind (StartDate).To (vm => vm.StartDate);
Here is the property on the view.
public static DateTime StartDate { get; set; }