コード例 #1
0
 public void OnlyAppliesToNullableTargetTypes()
 {
     Assert.That(ImplicitNullableValueBinding.TryBind(typeof(int?), typeof(int)), Is.Null);
 }
コード例 #2
0
 protected override DuckValueBindingOption TryBind(Type fromType, Type toType)
 {
     return(ImplicitNullableValueBinding.TryBind(fromType, toType));
 }