示例#1
0
 /// <summary>
 /// Removes a TouchedValue item to the collection.
 /// </summary>
 /// <param name="item">The item to remove.</param>
 public void Remove(TouchedValue item)
 {
     if (item == null)
     {
         throw new ArgumentNullException("item");
     }
     List.Remove(item);
 }
示例#2
0
 /// <summary>
 /// Inserts a TouchedValue instance into the collection.
 /// </summary>
 /// <param name="item">The item to add.</param>
 public void Insert(int index, TouchedValue item)
 {
     if (item == null)
     {
         throw new ArgumentNullException("item");
     }
     List.Insert(index, item);
 }
示例#3
0
 /// <summary>
 /// Adds a TouchedValue instance to the collection.
 /// </summary>
 /// <param name="item">The item to add.</param>
 public int Add(TouchedValue item)
 {
     if (item == null)
     {
         throw new ArgumentNullException("item");
     }
     return(List.Add(item));
 }
示例#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(TouchedValue item)
 {
     if (IndexOf(item) == -1)
     {
         return(false);
     }
     else
     {
         return(true);
     }
 }
示例#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(TouchedValue item)
 {
     return(List.IndexOf(item));
 }