示例#1
0
        /// <summary>
        /// Pops an integer value from the evaluation stack and branches to the given label if it interprets as false
        /// </summary>
        /// <param name="generator">The <see cref="T:System.Reflection.Emit.XsILGenerator" /> to emit instructions from</param>
        /// <param name="labelName">The name of the fluently-specified label</param>

        public static XsILGenerator BranchIfFalse(this XsILGenerator generator, string labelName)
        => generator.BranchIfFalse(generator.GetOrCreateLabel(labelName));