TUP.AsmResolver.Offset.Offset C# (CSharp) Метод

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

Creates a new instance of an offset.
public Offset ( uint offset, uint rva, ulong va ) : System
offset uint The raw offset.
rva uint The virtual address that is relative to a section.
va ulong The virtual address.
Результат System
        public Offset(uint offset, uint rva, ulong va)
        {
            this.FileOffset = offset;
            this.Rva = rva;
            this.Va = va;
        }