programming
System.Diagnostics.Debug.Assert
Checks for a condition and displays a message if the condition is false.
Assert(Boolean) Checks for a condition and outputs the call stack if the condition is false.
Refer: http://msdn.microsoft.com/en-us/library/system.diagnostics.debug.assert.aspx
One advantage of Debug.Assert() is that the C# and VB compilers (not C++) eliminate the Debug.Assert() statement from the CIL code when the DEBUG precompile constant is not [...]
Exporting Data: Creating XML Files using C#
When you want to export data, you can choose formats such as XML or csv for the data files. The XML format is more widely used for its flexibility and is desirable by many systems to be able to process the data. This article explains how to create xml files from C# classes.
Situation: Where would [...]
Getting Started With ASP.NET AJAX
A while ago, I wrote a small how-to on “Getting started with ASP.NET AJAX”. The article describes how to setup ASP.NET AJAX for the first time and then create a first application. Here’s a live demo: http://www.dataproxl.com/Demos/asp-net-ajax-enabled1.aspx and here’s the link to the full article: http://dataproxl.googlepages.com/gettingstartedwithasp.netajax
I’ve worked on few other samples afterwards, need to [...]


