¡@

Home 

c# Programming Glossary: collectionbase

How to create a custom collection in .NET 2.0

http://stackoverflow.com/questions/1192022/how-to-create-a-custom-collection-in-net-2-0

collection I am deriving my custom collection class from CollectionBase class as below public class MyCollection System.Collectio.CollectionBase.. class as below public class MyCollection System.Collectio.CollectionBase MyCollection public void Add MyClass item this.List.Add item..

List<BusinessObject> or BusinessObjectCollection?

http://stackoverflow.com/questions/21715/listbusinessobject-or-businessobjectcollection

base that implemented IEnumerable IE public class CollectionBase IEnumerable and then would derive their Business Object collections.. from that. public class BusinessObjectCollection CollectionBase Now with the generic list class does anyone just use that instead..

How to modify PropertyGrid at runtime (add/remove property and dynamic types/enums)

http://stackoverflow.com/questions/313822/how-to-modify-propertygrid-at-runtime-add-remove-property-and-dynamic-types-enu

binding to property grid summary public class CustomClass CollectionBase ICustomTypeDescriptor summary Add CustomProperty to Collectionbase..

Silverlight and ArrayList

http://stackoverflow.com/questions/4181800/silverlight-and-arraylist

CaseInsensitiveComparer CaseInsensitiveHashCodeProvider CollectionBase Comparer CompatibleComparer DictionaryBase EmptyReadOnlyDictionaryInternal.. KeyValuePairs ListDictionaryInternal Queue ReadOnlyCollectionBase SortedList Stack Just to make it clear Microsoft is not planning..

Creating a blocking Queue<T> in .NET?

http://stackoverflow.com/questions/530211/creating-a-blocking-queuet-in-net

that I should be using internal class BlockingCollection T CollectionBase IEnumerable todo might be worth changing this into a proper..

Inherit List<T>

http://stackoverflow.com/questions/5376203/inherit-listt

Collection T ReadOnlyCollection T KeyedCollection K T or CollectionBase subtypes instead. Note that the generic collections are only..