mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
10 lines
153 B
C#
10 lines
153 B
C#
public class Test
|
|
{
|
|
public int Field;
|
|
|
|
public override bool Equals(object other)
|
|
{
|
|
return ((Test)other).Field == this.Field;
|
|
}
|
|
}
|