Category: c #
Resharper is a great and must-have tool (plugin) for Visual Studio. It improves the code quality and helps to identify potential problematic code. The ‘Refactoring’ feature is great but …
The msbuild.exe is the core of the Visual Studio compiler. It has a switch option /verbosity which can be one of the values: q, m, n, d, and diag. …
Why are catching any general exceptions bad? They are just to suppress run time errors which may cause some more serious and worse errors later. try { } catch …
Polymorphism is one important feature of Object Oriented (OO) concept. In the following example, we want to compute the total amount of fuel required for three types of transport: …
C# 4.0 or above provides the Parallel.For and Parallel.ForEach to support parallelism in an intuitive manner. In this post, a function is coded to delete trash files older than …