예제 #1
0
 internal uint AddCode(CILInstructions byteCode)
 {
     byteCodes.Add(byteCode);
     uint offset = codeSize;
     codeSize += byteCode.GetCodeSize();
     return offset;
 }