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