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