What is METRO on Windows Phone 7?

Introduction My intention with this article is to clarify the doubts among the .NET programmers having a misconcept about Windows Phone 7 and Metro. When people first hear about METRO, they started believing that it’s a new programming language for Windows Phone 7 and they start referring to that in so many places.   What […]

Read more โ†’

Sorting a List in ASC/DESC order using LINQ

Most of the developers are unaware of the capabilities of .NET 3.5 and above. Still going for old way of sorting calling List.Sort and implementing a delegate or lambda expression to specify the sort expression.  But the slight problem is what you will do for “ASCENDING”  and “DESCENDING” order sorting. You have to specify the […]

Read more โ†’

Generating WCF/WebService proxy class using SvcUtil.exe

Introduction This article  prepared based on my recent explorations on creating generic WCF/WebService proxy class using SvcUtil.exe tool which is part of .NET Framework Runtime. SvcUtil.exe helps me in creating a single Proxy Stub class for my WCF/web service, which can be directly reused in any project when necessary, without the need to Add Web […]

Read more โ†’