VS2010

Back to Basics : Singleton Design Pattern using System.Lazy type

This article takes you to a simpler/alternative approach in making a Singleton Design Pattern implementation using System.Lazy class rather that using our traditional approach. Singleton Design Pattern implementation without lazy initialization: This code is thread safe enabled This approach ensures…
Read more

NuGet Package – Unity.WebAPI

Today I came across this interesting Nuget Package for creating ASP.NET Web API project with Microsoft Unity Dependency Injection container. It is pretty simple to configure and install on your existing Web API project or new ones. Inorder to use…
Read more

WCF RIA Services V1.0 SP2–available

Latest update for WCF RIA Services v 1.0 includes support for Windows 8.1 and VS2010, 2012, 2013. Version: 4.1.61829.0            |        Date Published:  11/5/2013 Little about WCF RIA Services “ WCF RIA Services simplifies the traditional n-tier application pattern by bringing…
Read more

Kinect SDK for Windows v 1.8 Released

Microsoft has released latest version of Kinect SDK for Windows and Kinect Developer Toolkit for Windows. The Kinect for Windows Software Development Kit (SDK) enables developers to create applications that support gesture and voice recognition, using Kinect sensor technology on…
Read more

Disable Client Side validation on a button click – ASP.NET MVC

ASP.NET MVC we use client side validation using jQuery.validate plugin, which will be based on Model – Data Annotation validation attributes. In some cases we might want to disable such validation on a button click wherever it is not needed….
Read more

Sending Mobile Push notification using C#/.NET (iOS, Android, Windows Phone 8, Windows 8 and Blackberry)

This is an update blog to my earlier blog about Sending Apple iOS Push notifications using C#. With that blog – I  introduced you to  how to send push notification using Open Source library APNSharp, by the developer John Redth. …
Read more