Category: c #
The static attributes in a class are served as global variables. A static variable can be accessed directly by class. You don’t need the instances (of class) in order …
The Resharper is a commercial plugin for Visual Studio, that makes VS a better IDE. One useful feature of Resharper is to mark useless (unused) code in grey colour, …
Resharper is a popular but commercial tool that is used to make Visual Studio a better IDE (Integrated Development Environment). It helps to spot code errors/warnings almost instantly and …
At .NET 4.0 or .NET 4.5, you can write simple Parallel For Loop, which is useful if you have SIMD (Single Instruction Multiple Data). Instead of hard-coded threads, putting …
Code Review is very important, because it will help to get rid of those low quality code, which may not be easily identified. The low quality code may pass …