Ejemplo n.º 1
0
 public override FTable read(FStore.Input input)
 {
     if (input == null) { m_size = 0; return this; }
      m_size = input.u2();
      m_table = new object[m_size];
      for (int i=0; i<m_size; i++)
        m_table[i] = input.f8();
      return this;
 }