public static HLNewArrayInstruction Create(HLMethod pMethod, HLLocation pDestinationSource, HLLocation pSizeSource, HLType pArrayType, HLType pElementType)
 {
     HLNewArrayInstruction instruction = new HLNewArrayInstruction(pMethod);
     instruction.mDestinationSource = pDestinationSource;
     instruction.mSizeSource = pSizeSource;
     instruction.mArrayType = pArrayType;
     instruction.mElementType = pElementType;
     return instruction;
 }
예제 #2
0
        public static HLNewArrayInstruction Create(HLMethod pMethod, HLLocation pDestinationSource, HLLocation pSizeSource, HLType pArrayType, HLType pElementType)
        {
            HLNewArrayInstruction instruction = new HLNewArrayInstruction(pMethod);

            instruction.mDestinationSource = pDestinationSource;
            instruction.mSizeSource        = pSizeSource;
            instruction.mArrayType         = pArrayType;
            instruction.mElementType       = pElementType;
            return(instruction);
        }