public void DuckCastOnNonInterfacesIsNotBindable()
 {
     Assert.That(DuckCastValueBinding.TryBind(typeof(object), typeof(Sample)), Is.Null);
 }
 protected override DuckValueBindingOption TryBind(Type fromType, Type toType)
 {
     return(DuckCastValueBinding.TryBind(fromType, toType));
 }