Ejemplo n.º 1
0
 public StructureReader(Structure <T> value, StructureSchema <T> schema)
 {
     _value  = value;
     _schema = schema;
 }
Ejemplo n.º 2
0
 public Structure(StructureSchema <T> schema)
 {
     _schema = schema;
 }
Ejemplo n.º 3
0
 public StructureReader(byte *ptr, StructureSchema <T> schema)
 {
     _ptr    = ptr;
     _schema = schema;
 }