TUP.AsmResolver.Offset.Offset C# (CSharp) Méthode

Offset() public méthode

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.
Résultat System
        public Offset(uint offset, uint rva, ulong va)
        {
            this.FileOffset = offset;
            this.Rva = rva;
            this.Va = va;
        }