vote up 5 vote down star
2

Over the years I have found myself being limited by what's available in the .NET framework, and having to work-around the stuff that isn't there.
This seems ludicrous to me because there are so many controls available on the internet, and us developers always seem to be solving the same problems over and over.

For example I recently needed to use a tree-list control. But because there isn't one available in the .NET framework, I had to either make it myself or use a 3rd party version.

Imagine there was some way of submitting a control or piece of code to MS so that they could try/test/tweak it and make it good enough to include in the next version of the framework.

If this could happen,

What would be your first request for the next version of the .NET framework?

flag
:S I'm confused :S – demoncodemonkey Oct 13 at 20:21
Wow, those links went nowhere. Copy paste fail. – Robert P Oct 13 at 22:46
Here's the real link: stackoverflow.com/questions/138367/… – Robert P Oct 13 at 22:47
Ah OK. But that's specifically for C# 4.0 and I'm talking about the .NET framework. I use C++/CLI not C#. – demoncodemonkey Oct 14 at 7:34

13 Answers

vote up 0 vote down

I want a ReadOnlyDictionary.

link|flag
vote up 0 vote down

Easier shared configuration solutions.

link|flag
vote up 0 vote down
  1. I want a tree-list view, i.e. a list-view which can have one of the columns be a tree-view. Or a tree-view with columns effectively. I've seen countless versions of this on the net and in many apps, and they all look slightly different.

  2. I want a full ribbon control which adheres to the current MS ribbon look and feel. For instance the l+f of the Win7 ribbon is completely different to the one I've been implementing from the MFC Feature Pack in VS2008 for the past year :/

It would satisfy my OCD if there was more consistency in this world :)

link|flag
Windows 7 scenic ribbon is the new, standard ribbon going forward. It's now built into the OS, and even Office 2010 will use it. – Robert P Oct 13 at 19:54
Well that's the new, current standard ribbon, which will probably look entirely different in 2 years time – demoncodemonkey Oct 13 at 20:22
vote up 8 vote down

Give me a Linker!

I want to be able to hand out a stand-alone app that does not rely on a particular set of libraries to be installed on the person's computer. I don't mind if the app remains a managed app in the process, but I'm tired of a 250 mb bootstrapper being the "solution" for distributing a tiny application that uses one one-hundredth of the APIs provided to me.

@Chris S: dotnetfx35.exe is 231 mb; that's the latest full installer I have. Depending on what you have installed already, it may not need all the data in there (in fact, it includes x86, x64, and ia64 versions of files). You could cut out the ia64 versions to save yourself some space ( the .exe can be decompressed and messed around with - Microsoft has a guide or two on the MSDN about it) but the installer still tries to phone home to Microsoft to make sure it has all the latest versions. (There's supposed to be a way to disable it, but that's not recommended.)

@FacitiusVir: The client profile has significant limitations: missing many libraries (basically, unless you're only doing WPF, it's no good), doesn't actually count as a .NET install (other apps won't sense it as a .NET install) and only works for Only Windows XP SP2 or SP3 and x86 architecture (sorry, a whole lot of people!) As soon as you get in an environment that fails to meet any of those situations, you're SOL. And then, I'm STILL distributing 24 extra megs for my app, that may be redundant when they're forced to get the entire client for X library not included in the Client Profile. To top it off, the client installer still needs to connect to the internet to install. That's unacceptable in many environments. I don't want ANY app I write "phoning home" during install - there are too many issues with trying to make internet connections through various types of firewalls to be a reasonable solution for a stable, simple to install program. I want to make stuff that just works, not stuff that happens to work if you're in a certain configuration (and if not, you have to create some file in a special place with a special name you looked up and yatta yatta.)

Now, with the .NET 4.0 Client installer, things are looking up: it now installs for every platform (that matters), you are allowed to have a local package installer, and it's actually part of the .NET framework now and can be serviced separately. That solves many of my particular beefs with it. As long as you're making pure .NET forms apps, you'll continue to be fine. However, as before, step outside that box a little and you're back in 231 meg land.

link|flag
Have you considered the .NET Framework Client Profile; as it only includes a subset of the API, it's between only 10MB to 56MB download, depending on what framework versions to already have installed. Not quite a compact as a single redistributable, but it's a lot less than 250MB. – FacticiusVir Oct 12 at 23:33
250mb or 22.4mb? – Chris S Oct 13 at 15:09
vote up 2 vote down

Microsoft's Community Promise was/is great news for the open source community, but I think a few people don't realize that it lacks in one particular area. Most people assume that the public API exposed by certain .NET Framework assemblies are what's covered by this promise. Notably, mscorlib, System, System.Core, System.Xml, and maybe some others. However, the promise only applies to the API listed in ECMA-335, which is unfortunately tremendously out of date and represents only a small fraction of the API exposed by these assemblies. Even fundamental things like the TryParse method exposed by most of the primitive types are missing from the published standard. I wish Microsoft would amend their statement to include "Implementations of the public API exposed by the assemblies X, Y, Z, ...," where this clearly applies only to the public API and not to the underlying source code (Microsoft's implementation). Coding strictly to the ECMA-335 standard would be a tremendous limitation even for basic console applications.

link|flag
vote up 3 vote down

I want:

  1. Improved start-up time of WPF applications. They've already taken a crack at this in 3.5 SP1, but there's still substantial room for improvement.
  2. Better hardware-acceleration support for Silverlight. It's been improved in Silverlight 3 for video-scaling and such, but it still isn't as far along as it is in WPF.
  3. More binding help for XAML in Visual Studio & Blend. Namely, I'd like to have intellisense work as I type, suggesting things to bind to. Because honestly, 9 times out of 10 I'm lost with the binding syntax of XAML.
link|flag
5  
I wish they would just include Blend with a purchase of Visual Studio. It is so vastly superior for WPF/Silverlight design that Visual Studio that they should either embed its UI as the Visual Studio designer or get rid of the VS designer in favor of it (Blend's). – 280Z28 Oct 12 at 22:58
Yeah, that'd be nice. Fortunately I'm using my BizSpark account to get all the developer tools for free while it lasts. But 3 years from now I'll have to pony up the cash for the latest Visual Studio AND Expression Studio since I've come to depend on them both. – Steve Wortham Oct 12 at 23:03
vote up 5 vote down
  1. Extension Properties. I know they were planned for .NET 4.0 but had to be cut. (See Eric Lippert's Blog for details)
  2. Static Interfaces. For example, several classes implement a Parse method, but there's no means of writing a generic method to convert a list of strings into a list of T.
  3. Also, a special generic type keyword for Enums.
  4. An interesting possibility would be retrospective interfaces. Let's say I define an interface with methods that exist on a class in a pre-existing library; for example, I want to wrap the System.Collections.Generic.Queue in an IQueue interface. Currently, I'd have to create a special wrapper class.
link|flag
1  
Aren't these more like wishlist for language features? – çağdaş Oct 17 at 0:33
vote up 0 vote down
  1. Assignment Type inference.
  2. Methods on Enums
  3. Enums that can implement interfaces ( like java's enums )
  4. Wildcards in Generics ( ? extends Myclass )

( Yeah I am a java programmer :) )

link|flag
+1 for #2. I like # 3 too, though. – Snarfblam Oct 12 at 22:54
4  
One major advantage of enums in the CLI is they are extremely lightweight. The bytecode operates on them as the underlying type. Enums in Java may be more flexible, but they are also often avoided (unfortunately) in favor of static final int for performance reasons. One could argue that an enumeration is a selection of options (no more or less), so an "enum with methods or interfaces" is actually a class/struct in the first place (not an enum at all). Static classes like Colors and SystemColors show particular examples of this pattern. – 280Z28 Oct 12 at 22:56
@280Z28 This is the first time I am hearing about performance issues with enums , i thought they were essentially like singletons . Can you post references supporting your claim – Surya Oct 12 at 23:01
Adding methods to an enum will have NO impact on performance of existing functionality. Being able to add methods doesn't require them to be garbage collected, read/written by accessors, created by constructors, or anything like that. It just allows methods to be added to the IL and called from code in a manner similar to extension methods on an enum. In fact, I believe you CAN give an enum methods if you write the IL yourself and assemble it. – Snarfblam Oct 14 at 21:32
P.S. Implementing an interface with an enum has no perf hit on existing functionality. Just like implementing an interface with a struct, you don't run into gc/boxing/v-tables/virtual calls unless you actually USE the interface. – Snarfblam Oct 14 at 21:46
vote up 3 vote down

const-correctness enforced by the CLR--it can't be cast away as in C++.

link|flag
vote up 3 vote down

A build in decent HTML editor. Like the Rich-text-box, but for html.

link|flag
vote up 2 vote down

More attractive default styles for WPF controls. I think Adobe Flex controls, for example, look much better out of the box.

link|flag
2  
MSFT just can't seem to focus on "better out of the box" xp. They build great frameworks and tools, but always comes short of a great end-to-end solution by missing the last mile. – Xerion Oct 13 at 15:17
vote up 11 vote down

1. LINQ-to-Events/Rx Framework (System.Reactive)

The IObservable/IObserver interfaces so we can traverse a sequence of events in the same way that the IEnumerable/IEnumerator pattern lets us traverse a sequence of objects. The System.Reactive.dll/Rx Framework is included with the Silverlight toolkit so it is likely it will happen in the near future. It really is one of the most exciting and important things to come to the framework since LINQ itself but nobody seems to know about it much yet.

The Rx team has discovered that pull sequences and push sequences are “dual.” That is to say, any operation you can perform on “pull” sequences can also be performed on “push” sequences. This is quite a revelation. To put things in perspective it’s been 13 years since Design Patterns was published and we’ve only now realized that the Observable pattern and the Iterator pattern are actually the same pattern.


2. A WPF equivalent of Winforms NotifyIcon, with tooltips, "toast" popups, etc

Up until now the only alternatives has been to include the dependency to Winforms, roll your own with API calls, or to use a third-party one (below).

WPF Notifyicon

link|flag
2  
+1 for the WPF NotifyIcon ! Linq to Events is probably a good idea too, although not as immediately useful to me... – Thomas Levesque Oct 12 at 23:14
I need to see lots more examples for System.Reactive before I can get in that mindset :o – 280Z28 Oct 13 at 1:24
vote up 0 vote down

To not have to cast enum's of integers back to int in order to use it!

link|flag
3  
But then you lose your strongly typed enums. – Ed Swangren Oct 12 at 22:09
1  
It would be nice to be able to treat enums more like ints sometimes. I agree there should be a cast to go from int to enum, but how is assigning an enum value to an int not a widening conversion? I get frustrated with this sometimes. The casts really clutter the code. – Snarfblam Oct 12 at 22:50
Consider Console.WriteLine(MyEnumType.SomeValue). As it stands, that resolves to Console.WriteLine(System.Object), which displays "SomeValue". With an implicit cast to int, it'll either cause an ambiguity error on compilation, or display the numeric value, I'm not sure which. Principle of Least Surprise, anyone? – FacticiusVir Oct 12 at 23:15
FacticiusVir, how does that cause implicit cast to int when WriteLine expects a string, which in term causes implicit call to MyEnumType.SomeValue.ToString(). – Xerion Oct 13 at 15:13
1  
You are right, this would break compatability, but it should have never been a required explicit cast in the first place. Enums are named constants, and pass the is-a test (as a matter of opinion): an instance of MyEnum is an int (in fact, you can specify this in the enum declaration... enum MyEnum : int {}). – Snarfblam Oct 14 at 21:36
show 3 more comments

Your Answer

Get an OpenID
or

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