コード例 #1
0
ファイル: HLGotoInstruction.cs プロジェクト: Astaelan/Neutron
        public static HLGotoInstruction Create(HLMethod pMethod, HLLabel pTargetLabel)
        {
            HLGotoInstruction instruction = new HLGotoInstruction(pMethod);

            instruction.mTargetLabel = pTargetLabel;
            return(instruction);
        }
コード例 #2
0
 public static HLGotoInstruction Create(HLMethod pMethod, HLLabel pTargetLabel)
 {
     HLGotoInstruction instruction = new HLGotoInstruction(pMethod);
     instruction.mTargetLabel = pTargetLabel;
     return instruction;
 }