dotnetcrunch

Programmer | Tech Blogger | Jack of all Trades, Master of Few | Learner Forever

Visual Studio Extensions

11 Visual Studio Extensions You Should Check

In this post, I am sharing the list of 11 Visual Studio Extensions that you should check. Some of them might be useful for you and may serve you as productivity hacks. 11 Visual Studio Extensions You Must Have After getting many responses as well as few requests to suggest popular visual studio extensions for .NET developers, I have decided to

11 Visual Studio Extensions You Should Check Read More »

Expression trees in c#

Quick-start Expression Trees in C# 3.0 With an Example

Before beginning with Expression Trees in C#, let us first understand Expression in .NET In .NET, Expression is an abstract class which contains static methods and inherited by various types (like ParameterExpression,MethodCallExpression, BinaryExpression etc.) to create expression tree nodes of specific types. Also, all these expression-specific expression tree types are defined in System.Linq.Expressions namespace. Introduction Expression Trees were first introduced

Quick-start Expression Trees in C# 3.0 With an Example Read More »