Click here to Skip to main content
15,891,033 members
Articles / Programming Languages / C#

Generic Gap Buffer

Rate me:
Please Sign up or sign in to vote.
4.89/5 (35 votes)
25 Oct 200720 min read 70.4K   617   57  
A list-style collection for fast insert and remove operations.
#region Using Directives

using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;

#endregion Using Directives


namespace Slusser.Collections.Generic
{
	internal sealed class CollectionDebugView<T>
	{
		#region Fields

		private ICollection<T> _collection;

		#endregion Fields


		#region Constructors

		public CollectionDebugView(ICollection<T> collection)
		{
			if (collection == null)
				throw new ArgumentNullException("collection");

			this._collection = collection;
		}

		#endregion Constructors


		#region Properties

		[DebuggerBrowsable(DebuggerBrowsableState.RootHidden)]
		public T[] Items
		{
			get
			{
				T[] array = new T[this._collection.Count];
				this._collection.CopyTo(array, 0);
				return array;
			}
		}

		#endregion Properties
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
Rather than attempt to keep up my biography, I will refer you to my website:

www.codetruffles.com

Comments and Discussions