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.
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I agree emphatically with this post (for those poo-pooing the lack of ToString, there is a debugger attribute to provide a custom format for your class). On top of the above list, I would also add the following reasonable requests:
That's enough for now I suppose. These are all irritations I've run into in the past week. I could probably go on for hours if I really put my mind to it. C# 4.0 is already adding named, optional and default arguments, which I emphatically approve of. Now for one unreasonable request:
Pretty please? :-) |
|||||||||||||
|
|
|||||||||||||||||
|
|
TextWriter is a base class of StreamWriter. wtf? That always confuses the hell out of me. |
|||||||||
|
|
A small C# pet peev - constructors use the C++/Java syntax of having the constructor be the same name as the class.
And sure, tools such as coderush make this less of an issue for renaming classes, but from a readability POV, New() provides great clarity. |
|||||
|
|
I don't understand that you can't do where T : new(U) So you declare that generic type T has a non-default constructor. edit: I want to do this:
|
|||||||||
|
|
I'm really surprised that I'm the first to mention this one: ADO.NET typed data sets don't expose nullable columns as properties of nullable types. You should be able to write this:
Instead, you have to write this, which is just stupid:
This was annoying in .NET 2.0, and it's even more annoying now that you have to use jiggery-pokery like the above in your nice neat LINQ queries. It's also annoying that the generated There's not a lot in .NET that makes me feel like the dev team said "Okay, boys, we're close enough - ship it!" But this sure does. |
|||||
|
Edit |
|||||
|
|
I don't know that I'd go as far as to say it's a design flaw, but it would be really nice if you could infer a lambda expression in the same way you can in VB: VB:
C# It would be nice if could do this:
Instead of having to do this:
I realise it's not much longer, but in Code Golf every character counts damnit! Don't they take that into account when they design these programming languages? :) |
|||||||||||||||||||||
|
|
Some people (ISVs) wish that you could compile it to machine code at build time, and link it, in order to create a native executable which doesn't need the dotNet run-time. |
|||||
|
|
We know so much about the right OO techniques. Decoupling, programming by contract, avoiding improper inheritance, appropriate use of exceptions, open/closed principal, Liskov substitutability, and so on. Any yet, the .Net frameworks do not employ best practices. To me the single biggest flaw in the design of .Net is not standing on the shoulders of giants; promoting less than ideal programming paradigms to the masses of programmers that use their frameworks. If MS paid attention to this, the software engineering world could have made great leaps in terms of quality, stability and scalability in this decade, but alas, it seems to be regressing. |
|||||||||||||||||
|
|
One of the things that irritates me is the |
||||
|
|
|
I don't like the C# switch statement. I would like something like this
So no more breaks (easy to forget) and the possibility to comma-separate different values. |
|||||||||||||
|
|
Events in C#, where you have to explicit check for listeners. Wasn't that the point with events, to broadcast to whoever happen to be there? Even if there aren't any? |
|||||
|
|
Some classes implement interfaces but they don't implement many of the methods of that interface, for example Array implements IList but 4 out of 9 methods throw NotSupportedException http://msdn.microsoft.com/en-us/library/system.array_members.aspx |
||||
|
|
|
Static members and nested types in interfaces. This is particularly useful when an interface member has a parameter of a type that is specific to the interface (e.g. an |
|||||||||
|
|
|||||
|
|
The awful (and quite invisible to most people) O(N^2) behaviour of nested/recursive iterators. I'm quite gutted that they know about it, know how to fix it but it is not viewed as having sufficient priority to merit inclusion. I work with tree like structures all the time and have to correct otherwise smart people's code when they inadvertently introduce highly expensive operations in this way. The beauty of "yield foreach' is that the simpler, easier syntax encourages correct, performant code. This is the "pit of success" that I think they should aspire to before adding new features for long term success of the platform. |
||||
|
|
|
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. |
||||
|
|
|
To add to the long list of good points made by others already:
|
|||||||||
|
|
The way we use properties irritates me sometimes. I like to think of them as the equivalent of Java's getFoo() and setFoo() methods. But they are not. If the Property Usage Guidelines.aspx) state that properties should be able to be set in any order so serialization can work, then they're useless for setter-time validation. If you come from a background where you like to prevent an object from allowing itself to ever get into an invalid state, then properties aren't your solution. Sometimes I fail to see just how they are better than public members, since we're so limited in what kinds of things we're supposed to do in properties. To that end, I've always kind of wished (this is mostly thinking out loud here, I just kind of wish I could do something like this) that I could extend the property syntax somehow. Imagine something like this:
I'm not sure if that's useful or what it accessing those would look like. But I just wish that I could do more with properties and really treat them like get and set methods. |
|||||
|
|
0 moonlighting as enum peculiarities of enum: http://blogs.msdn.com/abhinaba/archive/2007/01/09/more-peculiarites-of-enum.aspx as illustrated by this good example: http://plus.kaist.ac.kr/~shoh/postgresql/Npgsql/apidocs/Npgsql.NpgsqlParameterCollection.Add_overload_3.html my suggestion, put the "@" sign to good use: instead of: if ((myVar & MyEnumName.ColorRed) != 0) use this: if ((myVar & MyEnumName.ColorRed) != @0) |
||||
|
|
|
Extension methods are nice but they're an ugly way to solve problems that could have been solved cleaner with real mixins (look at ruby to see what I'm talking about), on the subject of mixins. A really nice way to add them to the language would have been to allow generics to be used for inheritance. This allows you to extend existing classes in a nice object oriented way:
this can be used like this to extend a string for example:
It's far more powerful than extension methods because it allows you to override methods, for example to wrap them allowing AOP-like functionality inside the language. Sorry for the rant :-) |
|||||||||||||
|
|
The .Parameters.Add() method on the SqlCommand in V1 of the framework was horribly designed -- one of the overloads would basically not work if you passed in a parameter with a value (int) of 0 -- this led to them creating the .Parameters.AddWithValue() method on the SqlCommand class. |
||||
|
|
|
||||
|
|
|
|||||||||||||||||
|
|
Microsoft won't fix obvious bugs in the framework and won't provide hooks so end users can fix them. Also, there is no way to binary-patch .NET executables at runtime and no way to specify private versions of .NET framework libraries without binary patching the native libraries (to intercept the load call), and ILDASM is not redistributable so I cannot automate the patch anyway. |
|||||||||||||
|
|
One thing that ticked me off in 1.x was when using the |
||||
|
|
|
Don't like it that you can't use the values of one enum in another enum, for example:
|
|||||
|
|
||||
|
|
|
I honestly have to say that during my years of .NET ( C# ) programming I haven't flaws in the framework design that I've remembered; Meaning that in my case there are probably no flaws that are worth remembering. However, there is something that I dissliked a couple of years back when Microsoft was releasing XNA, they completely cut of their MDX 2.0-version, which made my games unplayable and not easy to just convert. This is a broader flaw and has nothing to do with the .NET-framework. The .NET-framework actually follows a lot of Very Good design guidelines developed by a lot of the high end language architectures. So I have to say that im happy about .NET. But to tell you something that could be better, I'd have to complain about the Generic system, I don't find the Generics for Interfaces such as "where T is MyObj" ( that's not the completely correct syntax. However, this part could have been made much better and clearer. Imagine having an Interface which 2 different classes are sharing, if you want a Generic method inside that interface, you need to go over some nasty Generics-sytanx. It might just be me wanting to do weird stuff. Only memmorable thing for me though. |
||||
|
|