GetCodeSize() private method

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