use IntPtr instead of CriticalHandle to avoid resurrection issues. It's ok to never...
[mono-project.git] / netcore / System.Private.CoreLib / shared / System / IEquatable.cs
blob4a64ea37ee1f5dd823f6f22da96481c21f723e1b
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
5 using System.Diagnostics.CodeAnalysis;
7 namespace System
9 public interface IEquatable<T> // invariant due to questionable semantics around equality and inheritance
11 bool Equals([AllowNull] T other);