AsmResolver.ImageSymbolImport.GetTargetAddress C# (CSharp) Метод

GetTargetAddress() публичный Метод

Determines the import address to use for the symbol.
public GetTargetAddress ( bool is32Bit ) : ulong
is32Bit bool Specifies whether the address should be a 32-bit or 64-bit address.
Результат ulong
        public ulong GetTargetAddress(bool is32Bit)
        {
            if (Module == null)
                return 0;
            return Module.GetSymbolImportAddress(this, is32Bit);
        }