Skip to content

Commit

Permalink
implement GetHashCode()
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Miller committed Jul 1, 2024
1 parent c660d4b commit 03e5229
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Maui.DataGrid.Sample/Models/Team.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,6 @@ public override bool Equals(object? obj)
/// <inheritdoc/>
public override int GetHashCode()
{
throw new NotImplementedException();
return HashCode.Combine(Result, NumStreak);
}
}

0 comments on commit 03e5229

Please sign in to comment.