We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2981cce commit b7d75ceCopy full SHA for b7d75ce
Mathos/Arithmetic/Fraction.cs
@@ -155,16 +155,6 @@ public override bool Equals(object obj)
155
return obj != null && obj.GetType() == GetType() && this == (Fraction) obj;
156
}
157
158
- /// <summary>
159
- /// Returns the hash code for this instance.
160
- /// </summary>
161
- /// <returns>The hashcode of the fraction.</returns>
162
- /// <filterpriority>2</filterpriority>
163
- public override int GetHashCode()
164
- {
165
- return Numerator.GetHashCode() ^ Denominator.GetHashCode();
166
- }
167
-
168
/// <summary>
169
/// Convert the fraction into a decimal.
170
/// </summary>
0 commit comments