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.Reflection.Emit/Label.cs')
-rw-r--r--mcs/class/corlib/System.Reflection.Emit/Label.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/mcs/class/corlib/System.Reflection.Emit/Label.cs b/mcs/class/corlib/System.Reflection.Emit/Label.cs
deleted file mode 100644
index 19be26c6dea..00000000000
--- a/mcs/class/corlib/System.Reflection.Emit/Label.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-//
-// System.Reflection.Emit/Label.cs
-//
-// Author:
-// Paolo Molaro (lupus@ximian.com)
-//
-// (C) 2001 Ximian, Inc. http://www.ximian.com
-//
-
-namespace System.Reflection.Emit {
- [Serializable]
- public struct Label {
- internal int label;
-
- internal Label (int val) {
- label = val;
- }
-
- [MonoTODO]
- public override bool Equals (object obj) {
- /* FIXME */
- return false;
- }
-
- public override int GetHashCode () {
- return label.GetHashCode ();
- }
- }
-}