// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System { using System; public interface IEquatable { bool Equals(T other); } }