public bool Equals( SerializedPropertyEx otherProperty )
		{
			return propertyPath.Equals( otherProperty.propertyPath ) &&
				propertyType.Equals( otherProperty.propertyType ) &&
					value.Equals( otherProperty.value );
		}
 public bool Equals(SerializedPropertyEx otherProperty)
 {
     return(propertyPath.Equals(otherProperty.propertyPath) &&
            propertyType.Equals(otherProperty.propertyType) &&
            value.Equals(otherProperty.value));
 }