## Describe the bug The following code leads to the `Specified cast is not valid.` exception. Because of trying to cast `FieldInfo` to `PropertyInfo`. ```csharp public class MyViewModel : IBindingContext { [Observable] private readonly ICommand<string> _command = new Command<string>(Debug.Log); } ```