Microsoft has released final version of .NET Core 1.0 and ASP.NET Core 1.0 today. During May 2016, Microsoft has released RC2 version of the same framework hinting the release of final version soon, within a month Microsoft has released final version (Release to Manufacture). With this release, you can start building your next application today… Continue reading
Category: C#.NET
C#.NET
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 [code language=”csharp” padlinenumbers=”true”] /// <summary> /// Singleton class /// </summary> public class AppConfig { private AppConfig() { }… Continue reading
Static vs Singleton Classes
Recently while I was attending an interview I came across a question Static vs Singleton. Though I know the differences I couldn’t answer it properly, as I was not refreshed my programming knowledge before the interview. I would like to quote a reference to Jalpesh’s blog article (www.dotnetjalps.com) explaining the difference: Difference between Static and… Continue reading
Microsoft Developer Program for IoT & Windows 10 IoT Core Insider Preview
Microsoft has introduced a new developer program to enable the developers working on Internet of Things(IoT) based implementations. As part of this program developers would be able to try out – Windows 10 IoT Core Insider Preview. If you are an enthusiast working on IoT, you can signup @ https://www.windowsondevices.com/signup.aspx allows you to be early… Continue reading
Visual Studio 2015 – ctp6
Microsoft today has released Visual Studio 2015 Community Technology Preview 6 (CTP 6), which includes some new features and improvements, such as new UI debugging tools for XAML, new Control Flow Guard security tool, and feature updates to ASP.NET framework. For more information about what’s new in this release, please see the release notes. Visual Studio 2015… Continue reading
Get – Visual Studio 2013 – Update 4
Microsoft has released an update for Visual Studio 2013, this update is the latest in a cumulative series of feature additions and bug fixes for Visual Studio 2013. Download VS2013.04.exe (Online/Web Install) Download VS2013.04.iso (Offline Install) For more information, For more information: Soma’s blog Brian Harry’s blog Visual Studio team blog Slides Also see Visual… Continue reading
Visual Studio 2012.4 RC 3 Available
Microsoft has released the Visual Studio 2012.4 RC3 Update for Visual studio 2012. This update includes lots of bug fixes and improvements. Here are some informative links for you: Download – Visual Studio 2012.4 RC3 Update Visual Studio 2012.4 RC3 Update – KB Article
WP8Dev– How to identify the sensors supported on your Windows Phone
This post will give you an overview on how to identify the sensors supported on your Windows Phone. As a developer when you are developing for Windows Phone – and your application would need to interact with certain sensors in windows phone to achieve a certain functionality, you would need to verify whether the sensors… Continue reading
Microsoft Enterprise Library 6–Released
Microsoft has released the version 6.0 of their Microsoft Enterprise Library collection. Microsoft Enterprise Library is a collection of reusable components to meet your needs in developing enterprise applications using .NET technologies. Quoting from Microsoft Microsoft Enterprise Library is a collection of reusable application blocks designed to assist software developers with common enterprise development challenges.… Continue reading
Introduction to The One ASP.NET Platform/Ecosystem
Introduction ASP.NET has travelled a long way through evolutions. Earlier when ASP.NET 1.0 was released as part of .NET Framework 1.0 in Jan 2002, there was only ASP.NET – a framework for building dynamic web applications and it provided lots of flexibility web developers in building robust, dynamic web applications. ASP.NET was and is the… Continue reading