Simple Non-Blocking Parallel ForEach
This just a simple code snippet for a practical use, especially batch job sort of things. public static class Extensions { public static void ParallelForEach<T>(this List<T&am
This just a simple code snippet for a practical use, especially batch job sort of things. public static class Extensions { public static void ParallelForEach<T>(this List<T&am
BackgroundEven though Microsoft introduced Windows API Code Pack through their Channel 9 website, it seems to have been already decommissioned from their website. For both WinForms and WPF application
Autofac is one of the most popular IoC containers for application development. Like other IoC containers – Unity, Ninject, etc… – it provides a way to reduce efforts for registration of co
For .NET developers, Using Visual Studio (VS) is unavoidable, unless they are using different operating systems from Windows. The most recent version of VS is 2013 and VS 2014 will be officially relea
BizTalk is Microsoft’s Integration platform and it uses various “adapters” to integrate with Line of Business (LOB) system and others. Therefore, knowing how to use existing adapters and make one if i
LINQ (Language INtegrated Query) is one of the most powerful tools in .NET world. With this, code can be much simpler than before, especially for iterating objects. Using LINQ gives developers very si
There are many articles about implementing a scheduled job using Autofac and Quartz.NET on the Internet. However, they are not quite complete. They just provide some concepts but not actual working ex