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