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

Label.cs « System.Reflection.Emit « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19be26c6dea8a710fd643cf2a8fe06cfeb690813 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
// 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 ();
		}
	}
}