Base:
7 references to GetHashCode
Microsoft.CodeAnalysis (2)
Text\LinePositionSpan.cs (2)
69
return Hash.Combine(_start.
GetHashCode
(), _end.
GetHashCode
());
Microsoft.CodeAnalysis.Test.Utilities (1)
Diagnostics\DiagnosticDescription.cs (1)
357
hashCode = Hash.Combine(hashCode, _startPosition.Value.
GetHashCode
());
Microsoft.CodeAnalysis.UnitTests (4)
LinePositionTests.cs (4)
60
var hash1 = new LinePosition(1, 1).
GetHashCode
();
61
var hash2 = new LinePosition(2, 2).
GetHashCode
();
62
var hash3 = new LinePosition(1, 2).
GetHashCode
();
63
var hash4 = new LinePosition(2, 1).
GetHashCode
();