By tag: Expressions
0
kicks
Getting Started with LINQ - Part 2 (Language Enhancements)
In my previous post I summarized Microsoft Language Integrated Query (LINQ). Briefly discussed about its components as well as showed some code examples to highlight the sql query type syntax it uses. When we talk about LINQ, we are talking about number of little features that were added in .net 3.0...
0
kicks
Getting Started with LINQ
In this we’ll continue to discuss how to go about the SQL Server Data Access using various technologies. This post will discuss Microsoft Language Integrated Query, otherwise known as LINQ. I will discuss how it can be used to accomplish the same tasks we have discussed in previous posts. But before...
0
kicks
Fast expression compilation
Compilation of .NET expression trees takes a lot of time. You may expect you can compile just thousands of them per each second. The article explains how to increase the performance of expression compilation by 10...30 times.
0
kicks
How to : Code Beautifier And Formatter for VB/VBScript/VB.net
I wrote a simple Code Beautifier and formatter for VB/VBScript/VB.net using JavaScript and CSS.
0
kicks
C# methods decoration using lambda expressions
On regular basis several repeating code blocks appear in projects source code. Wouldn't it be great if we could just say: here is my method, do call within TCF block ("try - catch - finally" block) first time I need it, but I may require to call it with "try - catch" block only n...
0
kicks
C# 3.0 Lambda Expressions
Lambda expressions, a new feature in C# 3.0, have a more concise syntax to write anonymous functions. Lambda expressions express the implementation of a method and the instantiation of a delegate from the method with a single syntactical construct.