I'm trying to register a .Net assembly as a COM+ service and then to generate an MSI package in order the component to be deployed in several servers . The assembly was compiled using .Net framework 1.0.3705. After installing .Net framework 1.0.3705 SDK, I go to the command line ...
I'm using reflection API's to find the argument types of a methods (such as in or out etc). For example, consider this method public int outerFoo(string str, ref double db) { return 42; } When using reflection, I would like to know if str is [in] and db is