What is new in ASP.Net vNext

ASP.Net vNext is the next version of ASP.Net Framework. As part of ASP.NET vNext, the MVC, Web API, and Web Pages frameworks are being merged into one framework, called MVC 6. The new framework removes a lot of overlap between the existing MVC and Web API frameworks. ASP.Net vNext Features....


What is new in C# 6.0

Today I got a chance to look into C# 6.0 features. Thanks to ORTIA(Technology innovation division of Orion India Systems), for providing me the MSDN subscription. :) Exception filters : Exception filters lets you specify a condition for a catch block. The catch block gets executed only if the condition...


Introduction to SCRUM - Slides

Find the slides I have used in today’s session on SCRUM. http://www.slideshare.net/anurajp2/scrum-introduction-to-scrum-development-methodology


Force .NET application to run in 32bit process

Due to lack of 64 bit version of few COM libararies, we faced a situation to run our AnyCPU application into 32 bit. You can do this either by setting the Platform target or by using the corflags command. Using Platform target feature. - This is the simple solution, you...


How extension method works in .Net

What is extension method Here is the Wikipedia definition - In object-oriented computer programming, an extension method is a method added to an object after the original object was compiled. The modified object is often a class, a prototype or a type. Extension methods are permitted by some object-oriented programming...


Why you shouldn't believe in your favorite .net decompiler

Yesterday I posted about explicit interface implementation. I was curious about to know how CLR treats Explicit interface implementation. I looked into the generated IL code using IL DASM, and it was pretty similar to C# code I wrote. So I thought of reverse engineering the assembly. I verified the...


Explicit Interface Implementation in C#

If a class implements two interfaces that contain a member with the same signature, then implementing that member on the class will cause both interfaces to use that member as their implementation. class Sample : ISample, ISample2 { //Both ISample and ISample2 will call this method. public int Add(int a,...


Download .NET Architecture Universe Poster - 2014

.NET Universe Poster (2014) showing the main .NET SDKs, libraries and packages classified by application type and package type (NuGet, official support, etc.) You can download it from here


No more annual renewal fee for Windows developer accounts

Windows Dev Center requires only a one-time registration payment, which grants developers the ability to submit apps to both the Windows Store and Windows Phone Store, with no annual renewal fee. And this is applicable for the existing developers as well. You can find more details about it from Account...


CreateObject equivalent for C#

In current project, I had to use some 3rd party APIs, which is exposed via COM Interop. I found some VB.Net code to consume, but I couldn’t find in C# implementation for the same. Here is the code snippet which is equivalent VB.Net CreateObject method. var txt = "HelloWorld"; var...