Implemented interface member:
3 references to Equals
Microsoft.Build.Framework (3)
PathHelpers\AbsolutePath.cs (3)
200public static bool operator ==(AbsolutePath left, AbsolutePath right) => left.Equals(right); 208public static bool operator !=(AbsolutePath left, AbsolutePath right) => !left.Equals(right); 215public override bool Equals(object? obj) => obj is AbsolutePath other && Equals(other);