Beispiel #1
0
 private void _read()
 {
     if (((RootType == Tag.End) && (false)))
     {
         _rootCheck = m_io.ReadBytes(0);
     }
     _root = new NamedTag(m_io, this, m_root);
 }
Beispiel #2
0
 private void _read()
 {
     _tags = new List <NamedTag>();
     {
         var      i = 0;
         NamedTag M_;
         do
         {
             M_ = new NamedTag(m_io, this, m_root);
             _tags.Add(M_);
             i++;
         } while (!(M_.IsTagEnd));
     }
 }