Failing to assign a null variant value to a Nullable<T> property.

You cannot assign a Variant NULL to the Nullable type.
To see null to a Nullable variable, you should use the Empty property:

myClass.myproperty1 := Nullable<string>.Empty;