in firestore/testapp/Assets/Firebase/Sample/Firestore/SerializationTestData.cs [330:345]
public bool Equals(DictionaryInterfaceContainer other) {
if (other == null) {
return false;
}
if (Integers == other.Integers) {
return true;
}
if (Integers == null || other.Integers == null) {
return false;
}
if (Integers.Count != other.Integers.Count) {
return false;
}
int otherValue;
return Integers.All(pair => other.Integers.TryGetValue(pair.Key, out otherValue) && pair.Value == otherValue);
}