FileSystemInfoEqualityComparerEquals(FileSystemInfo, FileSystemInfo) Method

Determines whether the specified two FileSystemInfo objects are equal.

If the FullName property of the two objects are equal, the objects are considered equal.

If the FullName property of the two objects differs, the objects are considered different.

The FullName property is compared using OrdinalIgnoreCase rules.

Definition

Namespace: DevCase.Runtime.TypeComparers
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public override bool Equals(
	FileSystemInfo first,
	FileSystemInfo second
)

Parameters

first  FileSystemInfo
The first FileSystemInfo object to compare.
second  FileSystemInfo
The second FileSystemInfo object to compare.

Return Value

Boolean
if the specified objects are equal; otherwise, .

Implements

IEqualityComparerTEquals(T, T)

See Also