Null Pointer in Primitive.GetHashCode when a Primitive has not yet received properties
Properties.OwnerID.GetHashCode() causes NPE
should be guarded with
(Properties != null ? Properties.OwnerID.GetHashCode(): 0) ^
Maybe
Description
Null Pointer in Primitive.GetHashCode when a Primitive has not yet received properties
Properties.OwnerID.GetHashCode() causes NPE
should be guarded with
(Properties != null ? Properties.OwnerID.GetHashCode(): 0) ^
Maybe