I think there are people who may be able to answer this, this is a question out of curiosity:
The generic CreateInstance method from System.Activator, introduced in .NET v2 has no type constraints on the generic argument but does require a default constructor on the activated type, otherwise a MissingMethodException is thrown. To me it seems obvious that this method should have a type constraint like
Activator.CreateInstance<T>() where T : new() {
...
}
Just an omission or some anecdote lurking here?
Update
As pointed out, the compiler does not allow you to write
private T Create<T>() where T : struct, new()
error CS0451: The 'new()' constraint cannot be used with the 'struct' constraint
However, see comments a struct can be used as type argument to a generic method specifying a new() constraint. Under this circumstance the given answer seems the only valid reason to not constrain the method...
Thanks for looking over this!
default(T). – Adam Robinson Mar 3 '11 at 23:30void Foo<T>() where T:new() {},Foo<DateTime>();orFoo<int>();are both perfectly valid calls that the compiler won't complain about. – Adam Robinson Mar 3 '11 at 23:31newconstraint appears to have been introduced at the same time as generics, so it's not like it's a backwards-compatibility issue. Maybe they just forgot? – StriplingWarrior Mar 3 '11 at 23:32