Tag: C#
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: …
LINQ stands for Language-Integrated Query, which is made available to .NET programming languages from .NET 2.0. Coding using LINQ gives concise code and essentially it is a query where …
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 …
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 …