in Runtime/Scripts/Proto/Tuningfork.cs [730:742]
public bool Equals(AggregationStrategy other) {
if (ReferenceEquals(other, null)) {
return false;
}
if (ReferenceEquals(other, this)) {
return true;
}
if (Method != other.Method) return false;
if (IntervalmsOrCount != other.IntervalmsOrCount) return false;
if (MaxInstrumentationKeys != other.MaxInstrumentationKeys) return false;
if(!annotationEnumSize_.Equals(other.annotationEnumSize_)) return false;
return true;
}