Mono.Debugger.Backend.DwarfReader.IsSupported C# (CSharp) 메소드

IsSupported() 공개 정적인 메소드

public static IsSupported ( Bfd bfd ) : bool
bfd Bfd
리턴 bool
        public static bool IsSupported(Bfd bfd)
        {
            if ((bfd.Target == "elf32-i386") || (bfd.Target == "elf64-x86-64"))
                return bfd.HasSection (".debug_info");
            else
                return false;
        }