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