HasSection() public method

public HasSection ( string name ) : bool
name string
return bool
Esempio n. 1
0
 public static bool IsSupported(Bfd bfd)
 {
     if ((bfd.Target == "elf32-i386") || (bfd.Target == "elf64-x86-64"))
         return bfd.HasSection (".debug_info");
     else
         return false;
 }