Quantcast
Channel: Dot Net – TechNetExperts
Browsing latest articles
Browse All 10 View Live

Lambda Expression Method | LINQ

Lambdas are another way to write delegates, sometimes known as function pointers. It’s a much more compact way to write these and can be performed inline. They are extremely popular in LINQ where you...

View Article



Indexers | LINQ

The job of the indexer is to make it possible for an object to be indexed. It is indexed like array. Once the class of an indexer is defined that class then tends to behave like virtual array. The...

View Article

Extension Method | LINQ

Frequent use is made of extension methods in LINQ. The objective is to add query methods to existing classes. This specifically relates to collection classes. Find, Where, OrderBy, etc. are some of the...

View Article

Generic Constraints | LINQ

Constraints on Type Parameters At the time of defining a generic class, one can implement restrictions. These restrictions are about the various forms of types that can be used by the client code for...

View Article

Generic Delegate | LINQ

A delegate has the ability to define its type parameters. The type argument can be specified by the code that references the generic delegate. This happens the same way as it happens at the time of...

View Article


Delegates In C#

This article is meant to shed more light about delegates. It shall equip you with the desired information about delegates in C# and ways in which you can use them. Delegate The meaning of the word...

View Article

Create TextBox as a TimePicker in Windows Phone 8.1

BUSINESS CASE : One of our clients wanted to develop a survey app in Windows Phone 8.1. So this being a survey app, we can expect lot of input fields in a survey form. CLIENT CHALLENGE To maintain the...

View Article

Create TextBox as a DatePicker in Windows Phone 8.1

BUSINESS CASE : One of our clients wanted to develop a survey app in Windows Phone 8.1. So this being a survey app, we can expect lot of input fields in a survey form. CLIENT CHALLENGE To maintain the...

View Article


Overview of .NET Framework 4.6

Microsoft released Visual Studio 2015 preview with .Net Framework 4.6 which is compatible with .Net Framework 4 and above. It is a part of windows 10 and can be installed on Windows 7 and Windows 8 as...

View Article


Task Parallel Library in .NET

With .NET 4.0, new concept is introduced – Task. Task is part of Task Parallel Library (TPL), which is a new collection of classes that focus on parallel programming as well as offer light weight...

View Article
Browsing latest articles
Browse All 10 View Live




Latest Images