Ejemplo n.º 1
0
        public void Insert(int index, StructuredNameValue item)
        {
            if (item == null)
            {
                throw new ArgumentNullException("item");
            }

            m_items.Insert(index, item);
        }
Ejemplo n.º 2
0
        public void Add(StructuredNameValue item)
        {
            if (item == null)
            {
                throw new ArgumentNullException("item");
            }

            m_items.Add(item);
        }
Ejemplo n.º 3
0
 public bool Remove(StructuredNameValue item)
 {
     return(m_items.Remove(item));
 }
Ejemplo n.º 4
0
 public int IndexOf(StructuredNameValue item)
 {
     return(m_items.IndexOf(item));
 }
Ejemplo n.º 5
0
 public bool Contains(StructuredNameValue item)
 {
     return(m_items.Contains(item));
 }