Search Results

1
vote

Would you recommend using “The C5 Generic Collection Library for C# and CLI” based on your experience with it ?

I have been using the C5 library for a while now, and with much success. I find that C5 offers great benefit in programming to interface. For example, in System.Collections.Generic, …
4
votes

Where can I learn about the various types of .NET lists?

To expound on tobsen's earlier answer, the C5 Generic Collection Library has a large number of, well, collections. I'll describe some of them here: Queue/Stack …
0
votes

What kind of key-value collection allows for duplicates?

I think that what you are looking for is in effect a multidictionary. The C5 library* documentation has an example of how to build a mul …
4
votes

Limit size of Queue<T> in .NET?

I would recommend that you pull up the C5 Library. Unlike SCG (System.Collections.Generic), C5 is programmed to interface and designed to …
0
votes

Deleting items from one collection in another collection

Something for reference that is available with the C5 Generic Collection Library for .NET is the RemoveAll method, just as sp …
0
votes

ObservableCollection that also monitors changes on the elements in collection

Check out the C5 Generic Collection Library. All of its collections contain events that you can use to attach callbacks for when items ar …
1
vote

How to find out whether two ICollection<T> collections contain the same objects

Again, using the C5 library, having two sets, you could use: C5.ICollection<T> set1 = C5.ICollection<T> (); C5.ICollection<T> set2 = C5.ICollecton<T> (); if (set1.Unsequenced …
0
votes

Contract of ICollection<T>.IsReadOnly

Here, the semantics of modification are important. There is a difference between modifying the elements of a collection and modifying the objects contained by the collection. Think of the elements …
0
votes

.NET collection that throws an exception when a duplicate is added

If you're looking for AddRange style functionality, look at C5. The collections in the C5 family have a lot more functionalit …
0
votes

How can I fire event before item is added to collection in C#?

Use the C5 collections library. C5's collections are already set up to be able to fire events on several operations, includi …
1
vote

Calculating frequency distribution of a collection with .Net/C#

The C5 generic collections library has a HashBag implementation that accepts duplicates by counting. The following pseudo-cod …
0
votes

Is there a List<T> in .NET 2 that raises events when the list changes?

All of the collections in the C5 Generic Collection Library are designed to be able to raise events when an item is added, inserted, remov …
0
votes

AddRange to a Collection

The C5 Generic Collections Library classes all support the AddRange method. C5 has a much more robust interface that actually …
1
vote

Does a sorted queue exist in .NET?

Check out the C5 Generic Collections Library which already has an implementation just like you're looking for, called an IntervalHea …
0
votes

Custom Collection extends List<T> Add method

Your best bet is to set up and configure an ORM (Object-relational mapping), such as NHibernate, that will manage this for you. In effec …