Example #1
0
 public void Remove(Hadeeth item)
 {
     List.Remove(item);
 }
Example #2
0
 public void Insert(int index, Hadeeth item)
 {
     List.Insert(index, item);
 }
Example #3
0
 public int IndexOf(Hadeeth item)
 {
     return List.IndexOf(item);
 }
Example #4
0
 public void CopyTo(Hadeeth[] array, int index)
 {
     List.CopyTo(array, index);
 }
Example #5
0
 public bool Contains(Hadeeth item)
 {
     return List.Contains(item);
 }
Example #6
0
 public int Add(Hadeeth item)
 {
     return List.Add(item);
 }