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