예제 #1
0
		/// <summary>
		/// Whether the collection contains a capability.
		/// </summary>
		public bool Contains(Capability value){
			return List.Contains(value);
		}
예제 #2
0
		/// <summary>
		/// Get the index of capability from the collection.
		/// </summary>
		public int IndexOf(Capability value) {
			return List.IndexOf(value);
		}
예제 #3
0
		/// <summary>
		/// Insert a capability into the collection.
		/// </summary>
		public void Insert(int index, Capability value) {
			List.Insert( index, value);
		}
예제 #4
0
		/// <summary>
		/// Copy the capabilities to an array.
		/// </summary>
		public void CopyTo(Capability[] array, int index) {
			List.CopyTo(array, index);
		}
예제 #5
0
		/// <summary>
		/// Remove a capability from the collection.
		/// </summary>
		public void Remove(Capability value) {
			List.Remove(value);
		}
예제 #6
0
		/// <summary>
		/// Add a capability to the collection.
		/// </summary>
		public int Add(Capability value) {
			return List.Add(value);
		}