Esempio n. 1
0
        public static Label NewLabel(this CodeInstruction code, ILGenerator il)
        {
            Label label = il.DefineLabel();

            code.MarkLabel(label);
            return(label);
        }