private void AddToArray(SerializedProperty Property, string ValueToAdd, ref IEnumerable <string> Cache)
 {
     Property.AddUniqueArrayValue(ValueToAdd);
     Cache = Property.GetSafeArrayValues <string>();
 }