I wonder why IEnumerable
can\'t be assigned to a IEnumerable
. After all IEnumerable
is one of the few interfa
Every value type in .net has a corresponding ("boxed") object type. Non-boxed value types are effectively outside the object type hierarchy, but the compiler will perform a widening from the value type to the boxed class type. It would be helpful to have a "class" Boxed