lamp

Browse by Tags

Sorry, but there are no more tags available to filter with.
Explicitly call Dispose
21 July 09 03:23 PM | Frederick.Chapleau | with no comments
Calling Dispose release resources immediately, that can be useful for big files, handles etc... -f.
Filed under:
Improve your startup
20 July 09 11:21 PM | Frederick.Chapleau | with no comments
Use SGEN to generate the XML Generation assembly, it can be improved from milliseconds to minutes... -f. http://msdn.microsoft.com/en-us/library/bk3w6240(VS.80).aspx
Filed under:
Think before using ASP.Net
11 July 09 11:57 AM | Frederick.Chapleau | with no comments
ASP.Net is a fast and simple way to develop application. But there is more to think about, they are complex to debug, and a lot of stuff is added to the page (like the view state) Other trick like simple HTML and Ajax call, or JSON calls can facilitate...
Filed under:
Usage of the StringBuilder Class
06 July 09 12:06 PM | Frederick.Chapleau | with no comments
The string builder is a better way to handle string concatenation... they are realy concatenating string, and not copying their content. -f. ref.: http://dotnetperls.com/stringbuilder-1
Filed under: