Beispiel #1
0
 /// <summary>
 /// Removes a EntityIndex item to the collection.
 /// </summary>
 /// <param name="item">The item to remove.</param>
 public void Remove(EntityIndex item)
 {
     if (item == null)
     {
         throw new ArgumentNullException("item");
     }
     List.Remove(item);
 }
Beispiel #2
0
 /// <summary>
 /// Inserts a EntityIndex instance into the collection.
 /// </summary>
 /// <param name="item">The item to add.</param>
 public void Insert(int index, EntityIndex item)
 {
     if (item == null)
     {
         throw new ArgumentNullException("item");
     }
     List.Insert(index, item);
 }
Beispiel #3
0
 /// <summary>
 /// Adds a EntityIndex instance to the collection.
 /// </summary>
 /// <param name="item">The item to add.</param>
 public int Add(EntityIndex item)
 {
     if (item == null)
     {
         throw new ArgumentNullException("item");
     }
     return(List.Add(item));
 }
Beispiel #4
0
 /// <summary>
 /// Discovers if the given item is in the collection.
 /// </summary>
 /// <param name="item">The item to find.</param>
 /// <returns>Returns true if the given item is in the collection.</returns>
 public bool Contains(EntityIndex item)
 {
     if (IndexOf(item) == -1)
     {
         return(false);
     }
     else
     {
         return(true);
     }
 }
Beispiel #5
0
 /// <summary>
 /// Returns the index of the item in the collection.
 /// </summary>
 /// <param name="item">The item to find.</param>
 /// <returns>The index of the item, or -1 if it is not found.</returns>
 public int IndexOf(EntityIndex item)
 {
     return(List.IndexOf(item));
 }