Comment Re:Where's the Kitchen Sink? (Score 1) 386
This isn't quite so. In particular C#:
- does not support named indexers (both VB.Net and C++/CLI have that),
- does not have support for managed pointers in return values (C++/CLI can return managed pointers, e.g. T% f()),
- does not have notion for typed references to boxed values (C++/CLI have that: int^),
- does not support covariant or contravariant generic parameters (Eiffel uses genercs variance),
- etc.