コード例 #1
0
 /// <summary>
 /// Removes a ProjectStore item to the collection.
 /// </summary>
 /// <param name="item">The item to remove.</param>
 internal void Remove(ProjectStore item)
 {
     if (item == null)
     {
         throw new ArgumentNullException("item");
     }
     List.Remove(item);
 }
コード例 #2
0
 /// <summary>
 /// Inserts a ProjectStore instance into the collection.
 /// </summary>
 /// <param name="item">The item to add.</param>
 internal void Insert(int index, ProjectStore item)
 {
     if (item == null)
     {
         throw new ArgumentNullException("item");
     }
     List.Insert(index, item);
 }
コード例 #3
0
 /// <summary>
 /// Adds a ProjectStore instance to the collection.
 /// </summary>
 /// <param name="item">The item to add.</param>
 internal int Add(ProjectStore item)
 {
     if (item == null)
     {
         throw new ArgumentNullException("item");
     }
     return(List.Add(item));
 }
コード例 #4
0
 internal ProjectStoreListItem(ProjectStore store)
 {
     if (store == null)
     {
         throw new ArgumentNullException("store");
     }
     _store = store;
 }
コード例 #5
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>
 internal bool Contains(ProjectStore item)
 {
     if (IndexOf(item) == -1)
     {
         return(false);
     }
     else
     {
         return(true);
     }
 }
コード例 #6
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>
 internal int IndexOf(ProjectStore item)
 {
     return(List.IndexOf(item));
 }