You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
40
external/referencesource/mscorlib/system/icomparable.cs
vendored
Normal file
40
external/referencesource/mscorlib/system/icomparable.cs
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
// ==++==
|
||||
//
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
//
|
||||
// ==--==
|
||||
namespace System {
|
||||
|
||||
using System;
|
||||
// The IComparable interface is implemented by classes that support an
|
||||
// ordering of instances of the class. The ordering represented by
|
||||
// IComparable can be used to sort arrays and collections of objects
|
||||
// that implement the interface.
|
||||
//
|
||||
[System.Runtime.InteropServices.ComVisible(true)]
|
||||
public interface IComparable
|
||||
{
|
||||
// Interface does not need to be marked with the serializable attribute
|
||||
// Compares this object to another object, returning an integer that
|
||||
// indicates the relationship. An implementation of this method must return
|
||||
// a value less than zero if this is less than object, zero
|
||||
// if this is equal to object, or a value greater than zero
|
||||
// if this is greater than object.
|
||||
//
|
||||
int CompareTo(Object obj);
|
||||
}
|
||||
|
||||
// Generic version of IComparable.
|
||||
|
||||
public interface IComparable<in T>
|
||||
{
|
||||
// Interface does not need to be marked with the serializable attribute
|
||||
// Compares this object to another object, returning an integer that
|
||||
// indicates the relationship. An implementation of this method must return
|
||||
// a value less than zero if this is less than object, zero
|
||||
// if this is equal to object, or a value greater than zero
|
||||
// if this is greater than object.
|
||||
//
|
||||
int CompareTo(T other);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user