Пример #1
0
 /// <summary>
 /// Determine if the BanListItem is in the Collection
 /// </summary>
 /// <param name="value">Enemy class</param>
 /// <returns>true or false</returns>
 public bool Contains(ChannelListItem value)
 {
     return(this.List.Contains(value as object));
 }
Пример #2
0
 /// <summary>
 /// Remove a BanListItem from the Collection
 /// </summary>
 /// <param name="value">BanListItem to remove</param>
 public void Remove(ChannelListItem value)
 {
     this.List.Remove(value as object);
 }
Пример #3
0
 /// <summary>
 /// Add a new BanListItem to the Collection
 /// </summary>
 /// <param name="value">BanListItem class</param>
 public void Add(ChannelListItem value)
 {
     this.List.Add(value as object);
 }
Пример #4
0
		/// <summary>
		/// Determine if the BanListItem is in the Collection
		/// </summary>
		/// <param name="value">Enemy class</param>
		/// <returns>true or false</returns>
		public bool Contains(ChannelListItem value)
		{
			return this.List.Contains(value as object);
		}
Пример #5
0
		/// <summary>
		/// Remove a BanListItem from the Collection
		/// </summary>
		/// <param name="value">BanListItem to remove</param>
		public void Remove(ChannelListItem value)
		{
			this.List.Remove(value as object);
		}
Пример #6
0
		/// <summary>
		/// Add a new BanListItem to the Collection
		/// </summary>
		/// <param name="value">BanListItem class</param>
		public void Add(ChannelListItem value)
		{
			this.List.Add(value as object);
		}