mirror of
https://github.com/github/codeql.git
synced 2026-07-09 21:45:33 +02:00
21 lines
579 B
C#
21 lines
579 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 + // $ Alert[cs/magic-number]
|
|
391 + 391 + 391 + 391 + 391 + 391 + 391 + 391 + 391 + 391 +
|
|
391 + 391 + 391 + 391 + 391 + 391 + 391 + 391 + 391 + 391 + 397;
|
|
}
|
|
}
|