System.Reflection.Emit.Label.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode() { throw null; }
        public static bool operator ==(System.Reflection.Emit.Label a, System.Reflection.Emit.Label b) { throw null; }

Usage Example

		public DynamicMethodBody MarkLabel(Label label)
		{
#if DEBUG
			Console.WriteLine("IL_{0}:", label.GetHashCode());
#endif
			Emitter.MarkLabel(label);

			return this;
		}
All Usage Examples Of System.Reflection.Emit.Label::GetHashCode