Пример #1
0
 public virtual void SortByName()
 {
     for (int i = base.Count - 1; i > 0; i--)
     {
         for (int j = 0; j < i; j++)
         {
             if (this[j].internal_id.CompareTo(this[j + 1].internal_id) > 0)
             {
                 MasterCheckListType type = this[j];
                 this[j]     = this[j + 1];
                 this[j + 1] = type;
             }
         }
     }
 }
Пример #2
0
 public int Add(MasterCheckListType value)
 {
     return(base.List.Add(value));
 }
Пример #3
0
 public void Remove(MasterCheckListType value)
 {
     base.List.Remove(value);
 }
Пример #4
0
 public void Insert(int index, MasterCheckListType value)
 {
     base.List.Insert(index, value);
 }
Пример #5
0
 public int IndexOf(MasterCheckListType value)
 {
     return(base.List.IndexOf(value));
 }
Пример #6
0
 public bool Contains(MasterCheckListType value)
 {
     return(base.List.Contains(value));
 }