Archives for: "May 2006"
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. more »
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 more »
Spring .Net Example
I did an example to get an object from Spring Context. The key lines of code: IApplicationContext ctx = ContextRegistry.GetContext(); WindowConfig config = (WindowConfig) ctx.GetObject("WindowConfig"); Download Solution and sources - Click Here more »
Simple Clock - C# Example Codes
I wrote a little example. This example is to demostrate how to set the time zone/ Multi-Clocks more »