/// <summary>
 /// Create deep clone of the property data object.
 /// </summary>
 public object Clone()
 {
     return(new PropertyData()
     {
         Accessors = (AccessorType[])Accessors.Clone(),
         Type = Type
     });
 }