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......
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......
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......
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......
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......
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......
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......
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......
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......
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......
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......
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); ......
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......
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......
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: ......
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......
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......
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......
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......
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......
Popular Tutorials
- Creating Cookie in ASP.NET MVC Action | Handling Cookies in ASP.NET MVC | Set Cookie Expiry in ASP.NET MVC | ASP.NET MVC Tutorial
- Generating Multiline TextBox or TextArea with @Html.EditorFor in ASP.NET MVC
- Generating Unique Token in C# | Generating Unique Token that Expires after 24 Hours in C# | C# Tutorial
- Drag & Drop File Upload In ASP.NET MVC Using dropzone js with Fallback Browser Support | ASP.NET MVC Tutorial
- Loading PartialView Via JQuery In ASP.NET MVC | Returning PartialView From ASP.NET MVC Action | ASP.NET MVC Tutorial
- How To Enable Role Manager Feature In ASP.NET MVC? | ASP.NET MVC Interview Question
- How To Add CSS Class And Custom Property in Html.TextBoxFor? | ASP.NET MVC | RAZOR
- Send and Receive SMS and MMS Messages Using Android 4.4 SMS API | Android Video Tutorial
- How to Get Browser Agent from ASP.NET Web API Controller? | ASP.NET Web API Tutorial
- How to Override the Common Route Prefix? | ASP.Net MVC Interview Question