|
|
-
|
|
This post will be part of Visual Studio 2011 beta feature series. Everyday I am using Microsoft Visual Studio 2011 beta and everyday I learn some cool feature of it. In today’s post I am going to explain one cool features of Visual Studio 2011 beta sol...
|
|
-
|
|
This blog post will be part of Visual Studio 2011 Beta feature series. In this post we are going to look at some of CSS enhancement features in Visual Studio 2011 beta. First thing you notice in Visual Studio 2011 is better intellisense for the CSS. No...
|
|
-
|
|
This blog post will be a part of Visual Studio 2011 Beta feature series. In recent days I am exploring the Visual studio features and this blog post is also part of that. I am loving visual studio 2011 beta more and more after exploring features that m...
|
|
-
|
|
This post will be a part of the Visual Studio 2011 Beta feature series Today we are going to look at the New project dialog and some other improvements in visual studio 2011 beta. New project dialog comes with streamlined metro style icons of the proje...
|
|
-
|
|
Before some days Microsoft has release visual studio 2011 beta and I have started playing with it. Have you played with it yet? If not then this series of post is for your. I am going to start a series for few post here and this post also will be part t...
|
|
-
|
|
If you are a web developer you often need to upload file on the web server or database. In today’s post I am going explain how we can upload file in ASP.NET MVC 3 with razor syntax. So, first thing we need to create a view that will contain the file upload control. I am going to use an existing asp......
|
|
-
|
|
Before some time I have written a blog post about the SkipWhile operator and a reader of my blog asked me that we can do the same thing with Where also but there is a difference between this two. So In this post I am going to explain you difference between those two. Where operator filters a list o......
|
|
-
|
|
C# 4.0 language includes a new feature called Tuple. Tuple provides us a way of grouping elements of different data type. That enables us to use it a lots places at practical world like we can store a coordinates of graphs etc.
In C# 4.0 we can create Tuple with Create method. This Create method of......
|
|
-
|
|
In this post I am going to explain TakeWhile Operator in details. TakeWhile is one of partitioning operator available in Linq. It will take sequence until condition becomes false. Here is the example for that. using System;
using System.Collections.Generic;
using System.Linq;
namespace Linq
{......
|
|
-
|
|
I have been playing around linq and I have found great method call SkipWhile method. SkipWhile methods skips particular element which matches condition in predicate this can be use full in condition where we need to skip elements on particular condition. So let’s take some example. I have wr......
|
|