This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* *** | |
* This is a method from an object-relation-mapping (ORM) tool that I had started to write. | |
* I eventually stopped working on it, ad instead contributed time to the open source | |
* SubSonic project instead. | |
* | |
* This method is an example of generating DynamicMethods to be used at runtime to check and | |
* set some properties any an arbitrary type. This was used over straight reflection every time | |
* because reflection can be fairly slow. The use of a DynamicMethod is much quicker. | |
* *** */ |