ReadByteCodes() public method

public ReadByteCodes ( MethodDef meth, uint rva ) : void
meth MethodDef
rva uint
return void
Ejemplo n.º 1
0
 private void DoCode(PEReader buff)
 {
     if (rva != 0) {
         if (Diag.DiagOn) Console.WriteLine("Reading byte codes for method " + name);
         buff.ReadByteCodes(this,rva);
     }
 }