|
|
-
|
|
Collection initializer is a new feature in c# 3.0. using this feature an object can be added to a collection while collection is getting initiated. Collection initializer uses object initializer to add objects in collection on the fly.
Collection initializer is new feature of C# 3.0 ......
|
|
-
|
|
Objective This article will give a brief explanation on how to handle remote server name could not resolved exception in WCF Data Service. If you are new to this topic, please read Introduction to WCF Data service and ODATA before going through below article. Let us say, there is a WCF Data Servic......
|
|
-
|
|
Objective URL Routing is new feature in ASP.Net 4.0. This article will give a walkthrough on how to work with URL Routing and an introduction of that. URL Routing ASP.Net 4.0 URL Routing enables mapping between search engines optimized URL to physical web Form pages. For example http://localhos......
|
|
-
|
|
Projection helps us developer to retrieve desired result from the collection . LINQ provides two projection operator. Select and SelectMany. Select works with one collection whereas SelectMany works with more than one collection. Projection transforms the query result into the form defined by......
|
|
-
|
|
When we do conversion in c# , sometime conversions are not checked. C# compiler may not check the conversion and truncate the result. So Checked keyword helps us in doing that.
Objective In this article, I will discuss about Checked and unchecked keyword and conversions in C#. Consider......
|
|
-
|
|
When we call a method in c# in a nested manner , there are three terms come into action. They are Call stack , Call Site and Stack unwinding This article is going to explain about that.
Objective In this article, I will explain three basic terms of C# Call Stack Call Site ......
|
|
-
|
|
WebServiceHost factory helps us to host a WCF REST Service in managed application. This class is derived from ServiceHost class and automatically enables webHttpBinding and webHttpBehavior on the service End points. In this article, I will explain What is WebServic......
|
|
-
|
|
Objective
In this article, we will see how to work with LINQ against IIS.
Before applying LINQ against IIS sites and application pool, we need to set up the environment. Follow the bellows steps to do this.
Step 1
Down load Microsoft.Web.Administration.dll and save to a particular dire......
|
|