File: system\iequatable.cs
Project: ndp\clr\src\bcl\mscorlib.csproj (mscorlib)
// ==++==
// 
//   Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// ==--==
namespace System {
    
    using System;    
    public interface IEquatable<T>
    {
        bool Equals(T other);
    }
 
}