Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Good Examples of .NET Desktop Applications

I have been wondering (inspired by this question) if there are any popular dotNET desktop applications out there. (It doesn't have to be as popular as MS Office which is written in C++ AFAIK, but you get the idea.)

Just to get an idea - compare it to Java: Most of it's popular development IDEs are written in Java and I know at least Oracle's SQLdeveloper tool that is also a Java IDE.

So, which applications used by common people or common developers are written in .NET?

share|improve this question

marked as duplicate by George Stocker, Will Sep 17 '10 at 15:20

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

up vote 6 down vote accepted

The UI of Microsoft Visual Studio was coded in WPF, which is part of the .Net framework.

share|improve this answer
2  
You definitely meant Visual Studio 2010. – Liton Sep 20 '10 at 7:39

Paint.NET is a fantastic image editing program made in C# by one guy which I find easier to use and faster than other software like Photoshop and GIMP.

Also, I use the .NET Reflector all the time to look at how my applications are compiled into IL or to decompile other applications to see how they work.

share|improve this answer
2  
Paint.NET is a must on all of my PC's. – Ian Sep 17 '10 at 14:49

One that come me to mind is SharpDevelop, a free IDE for C#, VB.NET and Boo projects

share|improve this answer

I'd say that most .NET apps are business apps that most of the world will never see. We've written an entire ERP in .NET - the public at large will never see it.

I think this is due to the .NET culture: it's a costly environment and not open source, so hobbyists and opensource devs choose something else.

share|improve this answer
1  
I agree with the first point, but I understand the EULA for VS2010 Express is liberal enough to make commercial and freeware apps. – Henk Holterman Sep 17 '10 at 15:16
3  
@Henk that's correct. You can write and sell apps written using the Express versions. There is nothing costly about the .NET environment, something I'd think someone who wrote a business app using it would know. Also, as far as OSS goes, the .NET platform has more open source code in it than anything else Microsoft has put out. Just search MSPL. If you write open source software for the Windows platform, you should definitely consider the .NET platform as a viable option. – Will Sep 17 '10 at 15:23
@will: I don't care about reading the licensing agreement of the Express version since my company has a full blown Ultimate Extra Super WeReallyMeanIt msdn subscription. You're right, Microsoft is really pushing for open source on .NET, but they were very cold about it for years – Matt Jacobsen Sep 27 '10 at 7:39

Visual Studio 2010 is written in dotNet (or more specific in WPF).

share|improve this answer

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