views:

77

answers:

2

Do you know of any open source code that would go beyond the basic exercises (aka demonstrations of how particular C# construct works), thus a C# code that would have some real world value?

I did read similar threads ( http://stackoverflow.com/questions/1391909/as-a-net-beginner-what-should-i-learn-and-where-can-i-find-open-source-projects ) and the sites suggested (like http://www.codeplex.com and http://sourceforge.net), but all the apps I’ve found there are built using C# in conjunction with other technologies ( such as WinForms, Asp.Net, WCF, WPF, F#,Javascript ), while at the moment all I know is C#, a bit of Html and a bit of Ado.Net.

I do plan to learn these technologies also, but that could take months while I’d like to create some useful C# apps right now.

thanx

+1  A: 

Apache has a few .NET projects; log4net might be one to look at:

http://www.apache.org

Wayne
+1  A: 

Take a look at these:

C# port of the SQLite database: http://code.google.com/p/csharp-sqlite/

C# ADO.Net wrapper for SQLite: http://sqlite.phxsoftware.com/

Smart thread pool: http://www.codeplex.com/smartthreadpool

ebpower