GetSectionContents() private method

private GetSectionContents ( IntPtr section ) : byte[]
section System.IntPtr
return byte[]
示例#1
0
 object get_section_contents(object user_data)
 {
     byte[] data = bfd.GetSectionContents(section);
     if (data == null)
     {
         throw new SymbolTableException("Can't get bfd section {0}", name);
     }
     return(new TargetReader(data, bfd.info));
 }