posts - 236, comments - 436, trackbacks - 56

My Links

News

Awarded Microsoft MVP C#.NET - 2007, 2008 and 2009


I am born in Bangladesh and currently live in Melbourne, Australia. I am a Microsoft Certified Application Developer MCAD Chartered Member (C# .Net)and born in Bangladesh.
I am founder and Chief Executive Officer of
Simplexhub, a highly experienced software development company based in Melbourne Australia and Dhaka, Bangladesh. Co-founder and core developer of Pageflakes www.pageflakes.com.
Simplexhub, is on its mission to build a smart virtual community in Bangladesh and recently launched beta realestatebazaar.com.bd an ASP.NET MVC application written in C#.NET.


Some of My Articles
Flexible and Plugin based .Net Application..
Mass Emailing Functionality with C#, .NET 2.0, and Microsoft® SQL Server 2005 Service Broker'
Write your own Code Generator or Template Engine in .NET

Archives

Free Programming Language Training

January 2008 Entries

LINQ - "Where" Extension Method
Here is simple LINQ example where I have used Extension methods "Where", to select the participants whose score is greater than 80. var participants = Competition.GetParticipants() .Where(participant=> participant.Score > 80) .OrderByDescending(participant => parricipant.Score) .Select(participant => new { participant.Id, Name=participant.Name }); Note: here we are sending a Lamda expression (participant=>participan... as parameter of the "Where" extension method. Ever wondered...

Posted On Monday, January 28, 2008 1:38 AM | Feedback (5) |

C# Programming Guides in MSDN
Inside a C# Program Main() and Command Line Arguments (C# Programming Guide) Types (C# Programming Guide) Arrays (C# Programming Guide) Strings (C# Programming Guide) Statements, Expressions, and Operators (C# Programming Guide) (Anonymous Functions, Lambda Expression, Anonymous Methods) Objects, Classes, and Structs (C# Programming Guide) Properties (C# Programming Guide) Indexers (C# Programming Guide) Delegates (C# Programming Guide) Events (C# Programming Guide) Generics (C# Programming Guide)...

Posted On Saturday, January 26, 2008 5:13 PM | Feedback (0) |

Visual Studio Debug Tips: Memory Window
Visual Studio Debug Tips: Memory Window http://msdn2.microsoft.com/... be useful the next time I guess

Posted On Thursday, January 10, 2008 6:26 PM | Feedback (0) |

ASP.NET Web Service Tips: Documentation
wsdlHelpGenerator makes it very easy to write our Own Help page for the ASP.NET Web service application. Sometimes you might not like the autogenerated Help page and want to add your own company logo and put your own descriptive help page. The following piece of tweak of your web.config will do the trick.<configuration> <system.web> <webServices> <wsdlHelpGenerator href="docs/HelpPage.aspx"/> </webServices> </system.web> </configuration> If you want to use...

Posted On Wednesday, January 09, 2008 2:23 PM | Feedback (0) |

Powered by: