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

GetAddress() 보호된 메소드

protected GetAddress ( long address ) : TargetAddress
address long
리턴 TargetAddress
        protected TargetAddress GetAddress(long address)
        {
            if (!bfd.IsLoaded)
                throw new InvalidOperationException (
                    "Trying to get an address from not-loaded " +
                    "symbol file `" + bfd.FileName + "'");

            return bfd.GetAddress (address);
        }