Files
linux-packaging-mono/external/referencesource/mscorlib/system/collections/istructuralequatable.cs

7 lines
202 B
C#
Raw Normal View History

namespace System.Collections {
public interface IStructuralEquatable {
Boolean Equals(Object other, IEqualityComparer comparer);
int GetHashCode(IEqualityComparer comparer);
}
}