Implemented interface member:
6 references to Equals
Microsoft.Build.Framework (3)
PathHelpers\AbsolutePath.cs (3)
199
public static bool operator ==(AbsolutePath left, AbsolutePath right) => left.
Equals
(right);
207
public static bool operator !=(AbsolutePath left, AbsolutePath right) => !left.
Equals
(right);
214
public override bool Equals(object? obj) => obj is AbsolutePath other &&
Equals
(other);
Microsoft.Build.Framework.UnitTests (3)
AbsolutePath_Tests.cs (3)
137
path1.
Equals
(path2).ShouldBeTrue();
161
lowerPath.
Equals
(upperPath).ShouldBeTrue();
173
lowerPath.
Equals
(upperPath).ShouldBeFalse();