mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
22 lines
552 B
C#
22 lines
552 B
C#
|
|
class MyHashCode
|
|
{
|
|
public override int GetHashCode()
|
|
{
|
|
// GOOD: Constants in GetHashCode() are permitted.
|
|
return
|
|
397 +
|
|
397 + 397 + 397 + 397 + 397 + 397 + 397 + 397 + 397 + 397 +
|
|
397 + 397 + 397 + 397 + 397 + 397 + 397 + 397 + 397 + 397;
|
|
}
|
|
|
|
int NotHashCode()
|
|
{
|
|
// BAD: Number 391 is repeated.
|
|
return
|
|
391 +
|
|
391 + 391 + 391 + 391 + 391 + 391 + 391 + 391 + 391 + 391 +
|
|
391 + 391 + 391 + 391 + 391 + 391 + 391 + 391 + 391 + 391 + 397;
|
|
}
|
|
}
|