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
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
Simple Clock - C# Example Codes
I wrote a little example. This example is to demostrate how to set the time zone/
Spring .Net
A few days ago, someone has asked what Spring .Net framework does. Well, I can refer him to read some papers about dependency injection, something like this. But in a simple way, it initializes objects in xml files rather than in source codes. We call mutators in xml files. In the way, we can change values of objects in xml files. That does not require to require the source codes again.
Visit : Spring .Net Framework
