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