|
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
#nullable disable
using System;
using System.Collections.Generic;
using System.IO;
namespace Microsoft.Build.NuGetSdkResolver
{
/// <summary>
/// Represents an implementation of <see cref="IEqualityComparer{T}" /> that compares <see cref="FileSystemInfo" /> objects by the value of their <see cref="FileSystemInfo.FullName" /> property.
/// </summary>
internal sealed class FileSystemInfoFullNameEqualityComparer : IEqualityComparer<FileSystemInfo>
{
/// <summary>
/// Gets a static singleton for the <see cref="FileSystemInfoFullNameEqualityComparer" /> class.
/// </summary>
public static FileSystemInfoFullNameEqualityComparer Instance = new FileSystemInfoFullNameEqualityComparer();
/// <summary>
/// Initializes a new instance of the <see cref="FileSystemInfoFullNameEqualityComparer" /> class.
/// </summary>
private FileSystemInfoFullNameEqualityComparer()
{
}
/// <summary>
/// Determines whether the specified <see cref="FileSystemInfo" /> objects are equal by comparing their <see cref="FileSystemInfo.FullName" /> property.
/// </summary>
/// <param name="x">The first <see cref="FileSystemInfo" /> to compare.</param>
/// <param name="y">The second <see cref="FileSystemInfo" /> to compare.</param>
/// <returns><see langword="true" /> if the specified <see cref="FileSystemInfo" /> objects' <see cref="FileSystemInfo.FullName" /> property are equal, otherwise <see langword="false" />.</returns>
public bool Equals(FileSystemInfo x, FileSystemInfo y)
{
return string.Equals(x.FullName, y.FullName, StringComparison.Ordinal);
}
/// <summary>
/// Returns a hash code for the specified <see cref="FileSystemInfo" /> object's <see cref="FileSystemInfo.FullName" /> property.
/// </summary>
/// <param name="obj">The <see cref="FileSystemInfo" /> for which a hash code is to be returned.</param>
/// <returns>A hash code for the specified <see cref="FileSystemInfo" /> object's <see cref="FileSystemInfo.FullName" /> property..</returns>
public int GetHashCode(FileSystemInfo obj)
{
#if NETFRAMEWORK || NETSTANDARD
return obj.FullName.GetHashCode();
#else
return obj.FullName.GetHashCode(StringComparison.Ordinal);
#endif
}
}
}
|