Exemplo n.º 1
0
 public Bucket(MGTag tag)
 {
     m_Tag = tag;
 }
Exemplo n.º 2
0
        public void Push(MGTag tag)
        {
            if (m_CurrentLocation.Count >= m_DimensionPath.Count)
                throw new Exception();
            if (NextTagName != tag.Name)
                throw new Exception();

            m_CurrentLocation.Add(tag);
            UpdateCurrent();
        }