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.
|
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. |
||||||||
|
|
|
Don't like it that you can't use the values of one enum in another enum, for example:
|
|||
|
|
|
|
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. |
|||
|
|