Files
osukey/osu.Game
Bartłomiej Dach 15d9147edd Ensure equality member consistency for SampleInfo
The previous implementation of `SampleInfo`'s equality members was not
completely correct in its treatment of the `sampleNames` array. While
`Equals()` compared the values of `sampleNames` using `SequenceEqual()`,
therefore performing a structural check that inspects the contents of
both arrays, `GetHashCode()` used `HashCode.Combine()` directly on the
arrays, therefore operating on reference equality. This could cause the
pooling mechanism of samples to fail, as pointed out in #11079.

To resolve, change the `GetHashCode()` implementation such that it also
considers the contents of the array rather than just the reference to
the array itself. This is achieved by leveraging
`StructuralEqualityComparer`.

Additionally, as a bonus, an array sort was added to the constructor of
`SampleInfo`. This is intended to be a "canonicalisation" processing
step for the array of sample names. Thanks to that sort, two instances
of `SampleInfo` that have the same sample names but permutated will also
turn out to be equal and have the same hash codes, given the
implementation of both equality members. This gives `SampleInfo`
set-like semantics.
2020-12-03 23:25:53 +01:00
..
2020-12-02 10:55:48 +09:00
2020-09-19 15:13:52 -05:00
2020-12-03 18:04:53 +09:00
2020-11-01 18:51:39 +01:00
2020-10-20 00:46:08 +02:00
2020-12-02 20:01:58 +01:00
2020-11-30 19:43:20 +01:00
2020-10-16 12:58:34 +09:00
2020-12-03 17:42:41 +09:00
2020-11-16 16:49:31 +09:00