C# | ASP.net | jQuery | Javascript | linq
C# interview questions and answers
›
C# aka. "C sharp" is a programming language runs on the .NET Framework and used for building a variety of applications. C# is typ...
Set dropdown text selected from textbox value
›
In some cases we need to set dropdown list items exact text by matching the value entered in textbox. For that purpose we can use .keyup eve...
jQuery templates
›
jQuery templates is a useful plugin developed by Microsofts's ASP.NET team in collaboration with jquery open source team. Templates help...
Dynamic in C# 4.0
›
Dynamic type is introduced C# 4.0. As its name specifies type of the defined variable is decided dynamically at runtime. At compile time the...
Tuple in C# 4.0
›
Tuple is a new class introduced in C# 4.0. Tuple basically provides way to group the items of different data types. A static Tuple class pro...
Lazy loading C#. Lazy initialization.
›
C# 4.0 introduced new class Lazy which provided for Lazy initialization. Lazy instantiation here means object is not created until it is ge...
Skip in Linq C#
›
Skip() in Linq avoids or skips the given number of elements from the sequence. Skip() example in Linq protected void Page_Load(obje...
Take() in Linq C#
›
In Linq i.e. System.Linq, Take operator is used to get the first specified number of elements a sequence. Linq Take() example using Syst...
AsEnumerable() in Linq
›
AsEnumerable() method in Linq is used to cast or convert given type into it's IEnumerable type. AsEnumerable() basically changes the co...
Convert ToList() in Linq
›
In C# Linq, there is .ToList() extension method that is used to convert IEnumerable to List of type. Like .ToArray(), ToList() also forces i...
›
Home
View web version