Esempio n. 1
0
 public void WriteUInt08(byte[] block, int position, byte value)
 {
     UInt08.Write(block, position, value);
 }
Esempio n. 2
0
 public byte ReadUInt08(byte[] block, int position)
 {
     return(UInt08.Read(block, position));
 }
Esempio n. 3
0
 public void WriteUInt08(Block_I block, byte value)
 {
     UInt08.Write(block, value);
 }
Esempio n. 4
0
 object EndianObjectCodec_I.ReadUInt08(byte[] block, int offset)
 {
     return(UInt08.Read(block, offset));
 }
Esempio n. 5
0
 public byte ReadUInt08(Block_I block)
 {
     return(UInt08.Read(block));
 }
Esempio n. 6
0
 public void WriteBytes(byte[] block, int offset, byte[] value)
 {
     UInt08.Write(block, offset, value);
 }
Esempio n. 7
0
 object EndianObjectCodec_I.ReadUInt08(Block_I block)
 {
     return(UInt08.Read(block));
 }
Esempio n. 8
0
 public void WriteBytes(Block_I block, byte[] value)
 {
     UInt08.Write(block.Data, block.Position, value);
 }
Esempio n. 9
0
 public byte[] ReadBytes(byte[] block, int offset, int length)
 {
     return(UInt08.Read(block, offset, length));
 }
Esempio n. 10
0
 public byte[] ReadBytes(Block_I block, int length)
 {
     return(UInt08.Read(block, length));
 }
Esempio n. 11
0
 void EndianObjectCodec_I.WriteBytes(byte[] block, int offset, object value)
 {
     UInt08.Write(block, offset, (byte[])value);
 }
Esempio n. 12
0
 void EndianObjectCodec_I.WriteBytes(Block_I block, object value)
 {
     UInt08.Write(block.Data, block.Position, (byte[])value);
 }
Esempio n. 13
0
 object EndianObjectCodec_I.ReadBytes(byte[] block, int offset, int length)
 {
     return(UInt08.Read(block, offset, length));
 }
Esempio n. 14
0
 object EndianObjectCodec_I.ReadBytes(Block_I block, int length)
 {
     return(UInt08.Read(block, length));
 }