コード例 #1
0
 public void Remove(QueueElement details)
 {
     if (BaseIndexOf(details) >= 0)
     {
         BaseRemove(details.Name);
     }
 }
コード例 #2
0
        public QueueElementCollection()
        {
            QueueElement details = (QueueElement)CreateNewElement();

            if (details.Name != "")
            {
                Add(details);
            }
        }
コード例 #3
0
 public void Add(QueueElement details)
 {
     BaseAdd(details);
 }
コード例 #4
0
 public int IndexOf(QueueElement details)
 {
     return(BaseIndexOf(details));
 }