Mono.CSharp.SwitchLabel.GetILLabelCode C# (CSharp) Method

GetILLabelCode() public method

public GetILLabelCode ( EmitContext ec ) : Label
ec EmitContext
return System.Reflection.Emit.Label
		public Label GetILLabelCode (EmitContext ec)
		{
			if (!il_label_code_set){
				il_label_code = ec.DefineLabel ();
				il_label_code_set = true;
			}
			return il_label_code;
		}