Tubro C#
I am looking into this C# IDE Now.
I will write somethings about it late.
Please keep eyes on my blog.
Free C# development suite
I develop C# program using open source. I use SharpDevelop and mySQL. Then I can do my development in low budget. Using visual studio cost too much for me.
LINQ
I just watched the video about LINQ from microsoft. It seems to be more easy to do the C# database programming. It does O-R mapping. That 's similar with NHibernate. I will try during this week.
Let's check it out:
http://msdn.microsoft.com/data/ref/linq/
Re-study Threading
I have completed a number of course in threading. I did those courses in Java. Yesterday, I have started to do my readings on threading again. This is because I forgot most things in threading and .Net is quite different from Java as well.
Threading in .Net is simple
Thread is very simple. Only need to put the method name and use "Start" method.
Thread thread= new Thread(new ThreadStart(class1.Test2));
thread.Start();
There is an exmple, click here