June 2009 - Posts

2
Comments

Practical C# 4: Getters and setters get faster with .net 3.5 by avcajipe

I used to write basic class property implementations this way. This was boring and repetitive. Style 1: public class CaseDetails { public CaseDetails() { } private string _impact = "" ; private string _capacity = "" ; public string...
Filed under:
2
Comments

Practical Javascript 6: Debugging JS @ runtime by avcajipe

I’ve said it before and I’ll say it again. I just love being able to debug javascripts and put breakpoints at runtime with Visual Studio or with the free Visual Web Developer.
1
Comments

Practical C# 3: Programmatic Caching by avcajipe

Caching is the process of storing frequently used data on the server to fulfill subsequent requests. Grabbing objects from memory is always much faster than re-creating the web pages or items contained in them from scratch each time they are requested...
Filed under: , ,