Tagged Questions
9
votes
6answers
965 views
How might a class like .NET's ConcurrentBag<T> be implemented?
I find myself very intrigued by the existence of a ConcurrentBag<T> class in the upcoming .NET 4.0 framework:
Bags are useful for storing objects when ordering doesn't matter, and unlike ...
1
vote
1answer
225 views
Why is NHibernate creating a table without primary key?
We create the database using the schemaExport class of nHibernate. I now have an class with attributes from which we generated the nhibernate mapping. A part of this class is:
public class ...
1
vote
3answers
155 views
Why would I want to put my objects in a bag?
I just saw an SO question about the System.Collections.ConcurrentBag<T> class, and I've seen the ViewBag property of the Controller in ASP.NET MVC. In my experience, I've learned that it's ...
1
vote
3answers
969 views
Are there any implementations of multiset for .Net?
I'm looking for a .Net implementation of a multiset. Can anyone recommend a good one?
(A multiset, or bag, is a set that can have duplicate values, and on which you can do set operations: ...