16 lines
219 B
C#
Raw Normal View History

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