Author: admin

  • Blog
  • Author: admin

C# 6.0–Exception Filters

This blog post is part of C# 6.0 Features Series. C# 6.0 contains lots of small features and one of them is Exception filters. It is already there with VB.NET earlier but now it is available in C# also. In exception filters now if exception is combined with Exception statement and If condition of if satisfy

Creating an HttpHandler to handle request of your own extension

I have already posted about http handler in details before some time here. Now let’s create an http handler which will handle my custom extension. For that we need to create a http handlers class which will implement Ihttphandler. As we are implementing IHttpHandler we need to implement one method called process request and another

ASP.NET Forums and ASP.NET Blog Site changed.

Microsoft team has changed the layout of asp.net forums and asp.net web blogs. And after some time the whole asp.net site layout will be changed.Now it takes less time to load and has much more responsive then old site.For More details visit following link.. http://forums.asp.net/t/1111435.aspx

Basic of C# Programming.

C# is purely object oriented language. It has great features. It is just like c++ so if you know c++ you can easily learn c#. I have found a great article that will discuss following topic fo C#. Program structure Name spacesData typesVariablesOperators and expressionsEnumerationsStatements Classes and structs ModifiersPropertiesInterfacesFunction parametersArraysIndexer Boxing and unboxing Delegates Inheritance