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 …
4
votes

Reading from file not fast enough, how would I speed it up?

S = SR.ReadLine(); while (S != null) { stringFromFile.Append(SR.ReadLine()); } Of note here, S is never set after that initial ReadLine(), so …
1
vote

What dotnet collection class’s items can be enumerated in “addition order” and retrieved via a key?

First, on your primary assumption, you are correct. A normal dictionary makes no guarantees about the order of enumeration. Second, you'll need to be careful about going the SortedDi …
1
vote

Assembly “is not signed correctly.” Warning

Verify that the assembly wasn't generated with "delay sign" set. This would cause the assembly to advertise that it was signed, when it only has a null placeholder instead. This will …
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 …
15
votes

.NET : How do you get the Type of a null object?

So is there any way to get the type of an object that is set to null? I would think there would have to be a way to know what type a storage location is without it being assigned any …
0
votes

What are the most relevant OSS projects for .NET?

I'd add in the C5 Generic Collection Library. Whereas the .NET BCL generic collections contain interfaces, they aren't programmed to thei …
1
vote

Can .NET code compiled with the unsafe tag run in Mono?

Yes, unsafe is available. Mono even uses the unsafe keyword internally to try to speed up in some areas, such as BigInteger arithmetic in Mono.S …
2
votes

someDictionary.ContainsKey(someDictionary.Keys.First)… is False???

Doing a dict.ContainsKey(dict.Keys.First) won't return true if the hash code of the Keys.First has changed since it was placed into the hash table. The reason is t …
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 …
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 …