vote up 28 vote down star
25

What do you think are the biggest design flaws in C# or the .NET Framework in general?

My favorites are that there's no non-nullable string type and that you have to check for DBNull when fetching values from an IDataReader.

flag
3  
Cue Jon Skeet to talk about sealed classes ;) – lagerdalek Jan 4 '09 at 23:57
2  
It's pretty easy to fix IDataReader with an extension method: see weblogs.asp.net/skillet/archive/…. – Robert Rossney Jan 5 '09 at 8:00
show 4 more comments

32 Answers

prev 1 2
vote up 2 vote down

Don't like it that you can't use the values of one enum in another enum, for example:

    enum Colors { white, blue, green, red, black, yellow }

    enum SpecialColors { Colors.blue, Colors.red, Colors.Yellow }
link|flag
vote up 2 vote down

The terribly dangerous default nature of events. The fact that you can call an event and be in an inconsistent state due to subscribers being removed is just horrible. See Jon Skeet's and Eric Lippert's excellent articles for more reading on the subject.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.