Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Collections/IComparer.cs')
-rw-r--r--mcs/class/corlib/System.Collections/IComparer.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/mcs/class/corlib/System.Collections/IComparer.cs b/mcs/class/corlib/System.Collections/IComparer.cs
deleted file mode 100644
index 3d1ee2ef609..00000000000
--- a/mcs/class/corlib/System.Collections/IComparer.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-// -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
-//
-// System.Collections.IComparer
-//
-// Author:
-// Vladimir Vukicevic (vladimir@pobox.com)
-//
-// (C) 2001 Vladimir Vukicevic
-//
-
-using System;
-
-namespace System.Collections {
-
- public interface IComparer {
- int Compare (object x, object y);
- }
-
-}