{#advanced_dlg.about_title}

»

Friday, April 23, 2010 | 0 Comments

  Business data tends to organize itself into rows and columns (witness the success of Lotus123, Excel and other spreadsheet software). For the .NET UI developer, the Windows DataGridView is indispensible in that it provides a quick way to organize business data into rows and columns. Sorting, Paging etc. are usually either built in or fairly straightforward to implement.   While the DataGridView control is flexible enough to display any IList as its datasource, it starts running int... [More]

{#advanced_dlg.about_title}

.NET Application Architecture, C# Language Features »

Sunday, April 18, 2010 | 0 Comments

getting started with .NET's thread pool. Basic multithreading in C# [More]

{#advanced_dlg.about_title}

»

Friday, April 16, 2010 | 0 Comments

To address performance issues in .NET applications, Anuj Varma provides a comprehensive Code Review (CoRe) service. This service identifies potential memory leaks as well as catches bugs through automated tests. In addition, it provides a thorough re-validation of the entire business process. [More]

{#advanced_dlg.about_title}

»

Saturday, April 10, 2010 | 0 Comments

The Singleton pattern is one of the most widely used in object oriented programming. The basic idea is to prevent multiple instances of a class. One might ask – how does this differ from a static class? Difference between a Static class and a Singleton IDENTITY: Static classes are used whenever there is no reason to associate an identity with an object. For example – if one were modeling a Financial Application, a class representing Money (containing numeric conversion methods etc... [More]

{#advanced_dlg.about_title}

»

Sunday, April 4, 2010 | 0 Comments

The Singleton pattern is one of the most widely used in object oriented programming. The basic idea is to prevent multiple instances of a class. One might ask – how does this differ from a static class? Difference between a Static class and a Singleton Static classes are used whenever there is no reason to associate an identity with an object. For example – if one were modeling a Financial Application, a class representing Money (containing numeric conversion methods etc.) could be designed ... [More]