By tag: Memoization
0
kicks
Memoizer Attribute Using Post Sharp
You can add this attribute to any method to memoize it. It modifies your complied code to intercept the method call and it checks for a cached result before returning anything.
0
kicks
Using Automatic Memoization
Continuing my series on functional programming ideas, this article looks at the functional programming technique of "automatic memoization" and shows how it can be used to great effect in C# 2.0.