Ejemplo n.º 1
0
 public abstract ushort Decode(ElfNative.Elf32_Section src);
Ejemplo n.º 2
0
 public void Encode(out ElfNative.Elf32_Section dest, ushort index)
 {
     dest = BinaryPrimitives.ReverseEndianness(index);
 }
Ejemplo n.º 3
0
 public void Encode(out ElfNative.Elf32_Section dest, ushort index)
 {
     dest = index;
 }
Ejemplo n.º 4
0
 public ushort Decode(ElfNative.Elf32_Section src)
 {
     return(src.Value);
 }
Ejemplo n.º 5
0
 public override ushort Decode(ElfNative.Elf32_Section src)
 {
     return(_decoder.Decode(src));
 }
Ejemplo n.º 6
0
 public ushort Decode(ElfNative.Elf32_Section src)
 {
     return(BinaryPrimitives.ReverseEndianness(src));
 }
Ejemplo n.º 7
0
 public abstract void Encode(out ElfNative.Elf32_Section dest, ushort index);