Generating Unique Token in C# | Generating Unique Token that Expires after 24 Hours in C# | C# Tutorial

,

There are two possible approaches; either you create a unique value and store somewhere along with the creation time, for example in a database, or you put the creation time inside......

Read More

New Features in C# 6.0 Visual Studio 2013 | C# 6.0 Video Tutorial | C# 6.0 Tutorial

,

This video tutorial explains you about new features on C# 6.0 visual studio 2013. From this video tutorial, you will understand what is improvised in C# 6.0 visual studio 2013 and......

Read More

Diagnosing Error: validation failed for one or more entities. see 'entityvalidationerrors' property for more details | Entity Framework Programmer Guide

,

Sometimes in entity framework code first approach, you could have come across an issue "validation failed for one or more entities. see 'entityvalidationerrors' property for more......

Read More

How a Foreign Key is Represented in LINQ ? | Foreign Key in LINQ Join | LINQ Interview Question | LINQ Programmer Guide

, ,

In LINQ you do not have to use join as often as you do in SQL because foreign keys in LINQ are represented in the object model as properties that hold a collection......

Read More

Sending Email with Attachment in C# | SMTP Email with Attachment in C# | Send Files using Google SMTP Server in C# | C# Programmer Guide

In the previous article, we have seen how to send Email using SMTP in C#. In this article, let us see how to send an email with attachment using SMTP protocol in C#. This example......

Read More

Sending Email from C# | SMTP Email in C# | Using Google SMTP Server in C# | C# Programmer Guide | C# Tutorial

We can send data or receive data over Internet in C# using two namespaces, System.Net and System.Net.Sockets. Let us use SMTP protocol in C# to send email from C# application. SMTP......

Read More

What is tuple in c#? | New features in C# 5.0 | ASP.NET C# Interview Question | ASP.NET Programmer Guide

, ,

Tuple Tuples allow you to group related values without the need of a class. It’s more flexible than the KeyValuePair because it can store up to 8 values. A nice thing about Tuples......

Read More

What is Named and Optional Arguments in C#? | New features in C# 5.0 | ASP.NET C# Interview Question | ASP.NET Programmer Guide

, ,

Named and Optional Arguments Named and optional arguments allows a lot of calling options (with defaults) but without the need of littering your code with overloads. Named Parameters......

Read More

New features in C# 5.0 | What is Parallel.ForEach and the Task Parallel Library | ASP.NET C# Interview Question | ASP.NET Programmer Guide

,

Parallel.ForEach and the Task Parallel Library The Task Parallel Library or TPL is a collection of classes designed to make multi-threading and parallel coding a lot easier and safer......

Read More

New features in C# 4.5 and C# 5.0 | ASP.NET C# Interview Question | C# Programmer Guide

,

BigInteger The is a new DLL called System.Numerics that holds 2 public types. One of these types is the BigInteger struct. If you ever feel the need for some scientific programming......

Read More

When to use IEnumerable, ICollection, IList and List? | Scenarions for IEnumerable, ICollection, IList and List | C# Interview Question | C# Programmer Guide

,

The below diagram clearly defines the difference between IEnumerable, ICollection, IList and List by listing the methods available in each of them. The following table......

Read More

Removing All Namespaces from XML Using C# Linq | Linq Programmer Guide

,

Below is the simple C# linq code snippet that strips namespaces from an XML string. public static string RemoveAllNamespaces(string xmlDocument) { var xml = XElement.Parse(xmlDocument); ......

Read More

Async Feature in C# 5.0 with Example Code | C# Tutorial | C# Programmer Guide

Two new key words are used for Async feature: async modifier and await operator. Method marked with async modifier is called async method. This new feature will......

Read More

Parallel Programming Architecture in the .NET Framework 4 | .Net Programmer Guide

,

The following illustration provides a high-level overview of the parallel programming architecture in the .NET Framework 4......

Read More

C# Features By Version | C# Interview Question | C# Tutorial | C# Programmer Guide

,

C# evolution started with visual studio 2002. Below diagram summarizes all the key featuresinto a C# Evolution Matrix for your reference: ......

Read More

What Is A Predicate Delegate? | Predicate Delegate In C# Tutorial | C# Guide

A predicate delegate is a delegate with the following signature: Return type - bool Argument type - generic So, a predicate delegate is a delegate which points to a boolean......

Read More

What's New In Microsoft Enterprise Library 6 Release | C# Tutorial And Tips

,

This major release of Enterprise Library contains many compelling new features and updates that will make developers and IT professionals more productive. Two new application blocks......

Read More

Why To Use Microsoft Enterprise Library | Main Goal Of Enterprise Library | C# Tutorial And Tips

Microsoft Enterprise Library is intended for use by developers who build complex, enterprise-level applications. Enterprise Library is used when building applications that typically......

Read More

Components In Microsoft Enterprise Library 6 | C# Tutorial And Tips

,

Microsoft Enterprise Library consists of reusable software components that are designed to assist developers with common enterprise development challenges. It includes a collection......

Read More

Scenarios To Implement Microsoft Enterprise Library | C# Tutorial And Tips

,

Microsoft released new version of Microsoft Enterprise Library 6. Microsoft Enterprise Library is a collection of application blocks designed to assist developers with common......

Read More