|
|
-
|
|
This is awesome book from Microsoft on Parallel programming coding guidelines. You can download here Below is Table content of this book Table of Contents Primitives for Parallel Programming Tasks Parallel.For and Parallel.ForEach Parallel LINQ ......
|
|
-
|
|
FxCop is standalone tool that can analyse managed code assemblies. It gives report about improvement in code based on Microsoft standard coding guidelines. However you can also add your rules in this tool. FxCop is not integrated into Visual studio. There is separate extension (FxCop Integrator ) w......
|
|
-
|
|
I am covering unit testing with mock objects using Rhino mock .net library.
What is unit Test?
It is a method of testing a smallest unit of source code. Unit can be function or
method. Unit tests are created during development process by develo......
|
|
-
|
|
I‘ll discuss about dependency injection pattern and its implementation using Microsoft Unity Application Block. First we start with what is Dependency Injection. What is Dependency Injection? DI is also known as Inversion of Control (IOC). It is a design pattern that remove tight cou......
|
|
-
|
|
Below is some very common tips to increase sql queries performance: Every index increases the time in takes to perform INSERTS, UPDATES and DELETES, so the number of indexes should not too high. Try to use maximum 4-5 indexes on one table, not more. If you have read-only table, then the ......
|
|
|
|
-
|
|
This is my third article on Parallel programming. Last two articles are on Data Parallelism and Task Parallelism. You can read my previous article here: Begin with Parallel programming in Dotnet 4.0 Task Parallelism: Parallel programming - II Today I am writing about how to cancel parallel tasks......
|
|
-
|
|
This code sample library will help all developers to find useful code in various dot net areas. Microsoft goal is to centralized all codes in one place. This library having below things: Microsoft All-in-One Code Framework: Free, centralized code sample library Code Samples ......
|
|
-
|
|
Below is some links of Microsoft case studies of Parallel Programming implementation. Composite http://www.microsoft.com/casestudies/Case_Study_Detail.aspx?casestudyid=4000006833 ORELogy http://www.microsoft.com/casestudies/Case_Study_Detail.aspx?casestudyid=4000006754 Visual Numerics http://w......
|
|
-
|
|
I developed a sample application long time back to use WPF UI in multithreaded scenario. This application shows market prices in real time. I don’t have any exchange connection so I created arbitrary market price generator to simulate live environment. I am explaining step by step functional......
|
|