The following are the results of a performance test performed against LCGs, direct function calls, and reflection API invokes. Each test ran for a number of iterations and produced a mean average time in milliseconds. The efficiency of the dynamic method delegate (LCGs) calls are calculated as the direct method call time divided by the [...]
Archive for October 12th, 2005
LCG Performance
Posted in Everything, Software Development, tagged Code on October 12, 2005 | 1 Comment »
Reflection and LCG
Posted in Everything, Software Development, tagged Code on October 12, 2005 | 7 Comments »
Anyone who has played with .NET long enough will tell you that Reflection is a really cool feature. Essentially, reflection enables the developer to query the type system (CLT – Common Language Type system), dynamically invoke methods, and dynamically create types at runtime, using meta-data stored in the .NET assemblies. The reflection API is built [...]
