⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 assetcollection.cs

📁 该源代码用 C# 写成
💻 CS
字号:
using System;
using System.Collections;
using Org.InteliIM.Activities.FileSharing;

namespace Org.InteliIM.Activities.FileSharing
{
	/// <summary>
	///   A collection that stores <see cref='Asset'/> objects.
	/// </summary>
	[Serializable()]
	public class AssetCollection : CollectionBase {
		
		/// <summary>
		///   Initializes a new instance of <see cref='AssetCollection'/>.
		/// </summary>
		public AssetCollection()
		{
		}
		
		/// <summary>
		///   Initializes a new instance of <see cref='AssetCollection'/> based on another <see cref='AssetCollection'/>.
		/// </summary>
		/// <param name='val'>
		///   A <see cref='AssetCollection'/> from which the contents are copied
		/// </param>
		public AssetCollection(AssetCollection val)
		{
			this.AddRange(val);
		}
		
		/// <summary>
		///   Initializes a new instance of <see cref='AssetCollection'/> containing any array of <see cref='Asset'/> objects.
		/// </summary>
		/// <param name='val'>
		///       A array of <see cref='Asset'/> objects with which to intialize the collection
		/// </param>
		public AssetCollection(Asset[] val)
		{
			this.AddRange(val);
		}
		
		/// <summary>
		///   Represents the entry at the specified index of the <see cref='Asset'/>.
		/// </summary>
		/// <param name='index'>The zero-based index of the entry to locate in the collection.</param>
		/// <value>The entry at the specified index of the collection.</value>
		/// <exception cref='ArgumentOutOfRangeException'><paramref name='index'/> is outside the valid range of indexes for the collection.</exception>
		public Asset this[int index] {
			get {
				return ((Asset)(List[index]));
			}
			set {
				List[index] = value;
			}
		}
		
		/// <summary>
		///   Adds a <see cref='Asset'/> with the specified value to the 
		///   <see cref='AssetCollection'/>.
		/// </summary>
		/// <param name='val'>The <see cref='Asset'/> to add.</param>
		/// <returns>The index at which the new element was inserted.</returns>
		/// <seealso cref='AssetCollection.AddRange'/>
		public int Add(Asset val)
		{
			return List.Add(val);
		}
		
		/// <summary>
		///   Copies the elements of an array to the end of the <see cref='AssetCollection'/>.
		/// </summary>
		/// <param name='val'>
		///    An array of type <see cref='Asset'/> containing the objects to add to the collection.
		/// </param>
		/// <seealso cref='AssetCollection.Add'/>
		public void AddRange(Asset[] val)
		{
			for (int i = 0; i < val.Length; i++) {
				this.Add(val[i]);
			}
		}
		
		/// <summary>
		///   Adds the contents of another <see cref='AssetCollection'/> to the end of the collection.
		/// </summary>
		/// <param name='val'>
		///    A <see cref='AssetCollection'/> containing the objects to add to the collection.
		/// </param>
		/// <seealso cref='AssetCollection.Add'/>
		public void AddRange(AssetCollection val)
		{
			for (int i = 0; i < val.Count; i++)
			{
				this.Add(val[i]);
			}
		}
		
		/// <summary>
		///   Gets a value indicating whether the 
		///    <see cref='AssetCollection'/> contains the specified <see cref='Asset'/>.
		/// </summary>
		/// <param name='val'>The <see cref='Asset'/> to locate.</param>
		/// <returns>
		/// <see langword='true'/> if the <see cref='Asset'/> is contained in the collection; 
		///   otherwise, <see langword='false'/>.
		/// </returns>
		/// <seealso cref='AssetCollection.IndexOf'/>
		public bool Contains(Asset val)
		{
			return List.Contains(val);
		}
		
		/// <summary>
		///   Copies the <see cref='AssetCollection'/> values to a one-dimensional <see cref='Array'/> instance at the 
		///    specified index.
		/// </summary>
		/// <param name='array'>The one-dimensional <see cref='Array'/> that is the destination of the values copied from <see cref='AssetCollection'/>.</param>
		/// <param name='index'>The index in <paramref name='array'/> where copying begins.</param>
		/// <exception cref='ArgumentException'>
		///   <para><paramref name='array'/> is multidimensional.</para>
		///   <para>-or-</para>
		///   <para>The number of elements in the <see cref='AssetCollection'/> is greater than
		///         the available space between <paramref name='arrayIndex'/> and the end of
		///         <paramref name='array'/>.</para>
		/// </exception>
		/// <exception cref='ArgumentNullException'><paramref name='array'/> is <see langword='null'/>. </exception>
		/// <exception cref='ArgumentOutOfRangeException'><paramref name='arrayIndex'/> is less than <paramref name='array'/>'s lowbound. </exception>
		/// <seealso cref='Array'/>
		public void CopyTo(Asset[] array, int index)
		{
			List.CopyTo(array, index);
		}
		
		/// <summary>
		///    Returns the index of a <see cref='Asset'/> in 
		///       the <see cref='AssetCollection'/>.
		/// </summary>
		/// <param name='val'>The <see cref='Asset'/> to locate.</param>
		/// <returns>
		///   The index of the <see cref='Asset'/> of <paramref name='val'/> in the 
		///   <see cref='AssetCollection'/>, if found; otherwise, -1.
		/// </returns>
		/// <seealso cref='AssetCollection.Contains'/>
		public int IndexOf(Asset val)
		{
			return List.IndexOf(val);
		}
		
		/// <summary>
		///   Inserts a <see cref='Asset'/> into the <see cref='AssetCollection'/> at the specified index.
		/// </summary>
		/// <param name='index'>The zero-based index where <paramref name='val'/> should be inserted.</param>
		/// <param name='val'>The <see cref='Asset'/> to insert.</param>
		/// <seealso cref='AssetCollection.Add'/>
		public void Insert(int index, Asset val)
		{
			List.Insert(index, val);
		}
		
		/// <summary>
		///  Returns an enumerator that can iterate through the <see cref='AssetCollection'/>.
		/// </summary>
		/// <seealso cref='IEnumerator'/>
		public new AssetEnumerator GetEnumerator()
		{
			return new AssetEnumerator(this);
		}
		
		/// <summary>
		///   Removes a specific <see cref='Asset'/> from the <see cref='AssetCollection'/>.
		/// </summary>
		/// <param name='val'>The <see cref='Asset'/> to remove from the <see cref='AssetCollection'/>.</param>
		/// <exception cref='ArgumentException'><paramref name='val'/> is not found in the Collection.</exception>
		public void Remove(Asset val)
		{
			List.Remove(val);
		}
		
		/// <summary>
		///   Enumerator that can iterate through a AssetCollection.
		/// </summary>
		/// <seealso cref='IEnumerator'/>
		/// <seealso cref='AssetCollection'/>
		/// <seealso cref='Asset'/>
		public class AssetEnumerator : IEnumerator
		{
			IEnumerator baseEnumerator;
			IEnumerable temp;
			
			/// <summary>
			///   Initializes a new instance of <see cref='AssetEnumerator'/>.
			/// </summary>
			public AssetEnumerator(AssetCollection mappings)
			{
				this.temp = ((IEnumerable)(mappings));
				this.baseEnumerator = temp.GetEnumerator();
			}
			
			/// <summary>
			///   Gets the current <see cref='Asset'/> in the <seealso cref='AssetCollection'/>.
			/// </summary>
			public Asset Current {
				get {
					return ((Asset)(baseEnumerator.Current));
				}
			}
			
			object IEnumerator.Current {
				get {
					return baseEnumerator.Current;
				}
			}
			
			/// <summary>
			///   Advances the enumerator to the next <see cref='Asset'/> of the <see cref='AssetCollection'/>.
			/// </summary>
			public bool MoveNext()
			{
				return baseEnumerator.MoveNext();
			}
			
			/// <summary>
			///   Sets the enumerator to its initial position, which is before the first element in the <see cref='AssetCollection'/>.
			/// </summary>
			public void Reset()
			{
				baseEnumerator.Reset();
			}
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -