Tag Archives: .net

Serializing Objects in JSON format

Serializing data/objects using XML is quite a standard way over the Web. But, XML has it’s own set of disadvantages owing to which I tried serializing objects in JSON format. It seems .NET has in-built support for doing the same. One simply needs to use the JavaScriptSerializer class available within ‘System.Web.Script.Serialization’ namespace. using System; using […]

0  

Email Dispatcher using C#

A few days back, I worked on an Email dispatcher command-line application which had capabilities of zipping up reports and emailing the reports to the clients at an astonishingly fast speed of hundreds of reports per min (assuming each report has 150,000 records with min of 6 columns). Here, I am implementing a similar application […]

0