(Richard Carr) Debugging code that uses parallel programming techniques presents additional difficulties to debugging software that executes on a single thread. Visual Studio provides tools that assist with these problems. One such tool is the Parallel Tasks window.
Tag: Development
Flatten a hierarchical collection of objects with LINQ
(Yves Vaillancourt) Recently, I had a particular need in a project where I had to flatten the hierarchy of an object type with children of the same type.
ASP.NET 4.5 Test-Drive
(Peter Vogel) Before the end of the year, Web developers will have a new version of Visual Studio (11), ASP.NET (4.5) and ASP.NET MVC (4). Here’s a look at what’s new in ASP.NET, followed by new features in ASP.NET MVC. There are enough new goodies that this article will just concentrate on what’s n
How to use String.Format function of C# in Javascript and display multiple values of a resource file.
(Niladri.Biswas) In this article we will look as how to use String.Format function of C# in JavaScript and display multiple values of a resource file.
ASP.NET MVC Beta and RC Upgrades – Confirm your Expectations and Version Numbers in Production Environments
(Scott Hanselman) I was working on an app locally using a daily build (newer than the currently released one) of ASP.NET MVC and deployed it to a host. I noticed this weird CSS issue. See how the text box on the left running on localhost is small and not styled while the one on the right running on
CRUD operation using ASP.NET Web Api and MVC 4 – Part 2
(Brij Mohan) This Post is continuation to my Previous Post where I have created a ASP.NET Web Api Service, In this Post I am going to create a simple client using jQuery, MVC 4 and Razor View Engine to call the Services and perform POST, DETELE, PUT and of course GET operations using the Web Api Ser
Useful .NET Delegate Internals
(Alois Kraus) Delegates in .NET are a very handy addition to the language. With the introduction of LINQ they did become mainstream and everyone is using them or is at least finding them cool. But what the CLR is really doing to them under the covers remains largely unexplored. This is ok as long as
10 command-line tools that refuse to die
(Jack Wallen) Despite the abundance of GUIs, the command line still offers more power, flexibility, and control for certain tasks.
Managing Structured Data using Windows Azure Table Service
(Mahesh Sabnis) The Table service component of the Windows Azure Storage service is a very simple, highly scalable and cost effective solution provided to store data. In this article, we will see how to store structured data on the cloud using Table Service.
Reflecting Type Hierarchy Information
(Richard Carr) The twelfth part of the Reflection tutorial describes how reflection can be used to investigate the types within inheritance hierarchies. It explains how to find the base type of a class and how to determine whether one class is a subclass of another.
