Posts Tagged ‘Property’

C# Optimizations Via Caching – Part 2 March 22, 2009 1 Comment

I decided to write part 2 of optimization, with C# Project, to actually test the performance for accessing NameValueCollection and Property access.
I had lot of comments by extra smart people quoting regarding my previous post at "C# Optimizations Via Caching" . That all methods posted do not do any significant impact on performance, I wonder [...]

C# Optimizations Via Caching December 12, 2008 14 Comments

Being computer science expert, I can visualize the load on Processor when I write the code, and though its cumbersome sometime to write more code to perform optimized operation,but its real worth while to spend time to understand Caching in programming.
Static Caching Config Values
The configuration values that you probably store in some config file, or [...]