vote up 4 vote down star

C# simple open source desktop application to learn from?

I'm trying to learn C#, but most of the times I found tutorials for non programmers which are pretty boring, or comparission with other lenguages.

I tried to compile an application that look nice enough as to call my attention and simple enough ( at first glance ) as to be understood by me, but it turns out it was developed in Mono.

I've downloaded VS for C# express edition in the past, but didn't knew what to do next with it.

So my question is:

Does anyone knows about a simple open source Windows Application developed in C# I can learn from?

It doesn't have to be too simple, but most of the ones I've looked so far are pretty complex, since they are production ready.

Thanks

flag
Keep in mind, developed in Mono does not mean "incompatible with MS .NET." One of the problems is that WinForms, the de facto (not true EMCA) GUI standard is a bit behind on Mono partially because it's harder to implement on non-Windows platforms. That led to GTK# and such. If you're just trying to find /any/ cross-platform C# app with source code, I would try looking through Freshmeat (freshmeat.net/tags/c-3) and/or Google Code (code.google.com/hosting/search?q=label%3a.NET/…) and see what interests you. – Matthew Flaschen May 7 at 21:43
In this particular case it was the Mono.Unix namespace – John May 7 at 21:51

8 Answers

vote up 3 vote down

If you dont mind wpf, try BabySmash

link|flag
vote up 1 vote down

These aren't desktop applications but they are good open source web applications done mostly in C# that you could learn from.

http://www.asp.net/community/projects/

link|flag
vote up 1 vote down

Have you tried looking at SourceForge or Code Project?

link|flag
vote up 1 vote down

check out http://www.codeplex.com

link|flag
1  
Yea, thats the true! makes it easier to pick something that you are intressted in. The last piece I checked out was toastify.codeplex.com – Carl Bergquist May 7 at 21:42
vote up 1 vote down

There are a lot of sample apps for both winforms and WPF over at windowsclient.net. I'm not sure I would call any of them a reference application, but there sure are a lot of them. :)

link|flag
vote up 0 vote down

I've had tremendous luck with Microsoft's SharePoint, and extending it was a lot of fun and very educational WRT c# and learning to use it. Check out pilothouseconsulting's development dvd for a lot of good initial information on setting up a debugger and such.

link|flag
vote up 0 vote down

A very simple command line grep tool I put on google code. You may find that interesting.

link|flag
vote up 0 vote down

I'd recommend [1]: http://www.codeproject.com for some really good simple-to-understand and powerful C# apps with their developers explaining about them in the forums, in case one has any queries.

link|flag

Your Answer

Get an OpenID
or

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