Tagged Questions
6
votes
2answers
523 views
Is BigInteger immutable or not?
In .NET 4 beta 2, there is the new Numerics namespace with struct BigInteger. The documentation states that it is an immutable type, as I would have expected.
But I'm a little confused by the ...
3
votes
3answers
172 views
Generic built-in EventArgs to hold only one property?
I have a number of EventArgs classes with only one field and an appropriate property to read it:
public class SomeEventArgs : EventArgs
{
private readonly Foo f;
public SomeEventArgs(Foo f)
...
3
votes
2answers
96 views
Is there any class in the .NET Framework to represent a holding container for objects?
I am looking for a class that defines a holding structure for an object. The value for this object could be set at a later time than when this container is created. It is useful to pass such a ...