public virtual void SortByName() { for (int i = base.Count - 1; i > 0; i--) { for (int j = 0; j < i; j++) { if (this[j].PartNo.CompareTo(this[j + 1].PartNo) > 0) { OpPartObj obj2 = this[j]; this[j] = this[j + 1]; this[j + 1] = obj2; } } } }
public int Add(OpPartObj value) { return(base.List.Add(value)); }
public void Remove(OpPartObj value) { base.List.Remove(value); }
public void Insert(int index, OpPartObj value) { base.List.Insert(index, value); }
public int IndexOf(OpPartObj value) { return(base.List.IndexOf(value)); }
public bool Contains(OpPartObj value) { return(base.List.Contains(value)); }