NH Blog - Articles on visual studio 2012

Mar 20, 2021

Managing packages with NuGet

NuGet is an open source package manager for the .NET Framework. NuGet makes it very easy for developers to add, remove and update library references in a project. It was [...]

Mar 04, 2021

Indexed member initialisers in C# 6

The new C# 6 compiler was released as open source on 1st April, 2014 in CodePlex. It was included in Visual Studio 14 CTP 3 that was released on the 18th August, 2014. [...]

Nov 13, 2020

Using Delegates in .NET

We can think of the concept of delegates in the .NET framework as a type-safe implementation of callback functions. In today’s post, I’ll dig deeper into this definition [...]

Oct 27, 2020

Extension methods in C#

In today’s blog post, I will address the issue of extending an object definition when you don’t have access to the source code or you can’t inherit from the original [...]

Sep 19, 2020

All about abstract classes in C#

In today's article, I will review one of the most exciting object-oriented programming (OOP) features of C#, namely the concept of abstract classes. An abstract class is [...]

Dec 10, 2020

Deploying Web and Service Applications to Windows Azure

Windows Azure brings an additional option to the old question of where you will host your web application or your services. Traditionally, you would pick the in-house [...]

top
Back to top