in Runtime/Scripts/Proto/Tuningfork.cs [268:280]
public override int GetHashCode() {
int hash = 1;
if (aggregationStrategy_ != null) hash ^= AggregationStrategy.GetHashCode();
hash ^= histograms_.GetHashCode();
if (BaseUri.Length != 0) hash ^= BaseUri.GetHashCode();
if (ApiKey.Length != 0) hash ^= ApiKey.GetHashCode();
if (DefaultFidelityParametersFilename.Length != 0) hash ^= DefaultFidelityParametersFilename.GetHashCode();
if (InitialRequestTimeoutMs != 0) hash ^= InitialRequestTimeoutMs.GetHashCode();
if (UltimateRequestTimeoutMs != 0) hash ^= UltimateRequestTimeoutMs.GetHashCode();
if (LoadingAnnotationIndex != 0) hash ^= LoadingAnnotationIndex.GetHashCode();
if (LevelAnnotationIndex != 0) hash ^= LevelAnnotationIndex.GetHashCode();
return hash;
}