Referencing a COM assembly in Visual Studio vs converting a COM assembly via tlbimp.exe - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T11:27:57Zhttp://stackoverflow.com/feeds/question/714952http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/714952/referencing-a-com-assembly-in-visual-studio-vs-converting-a-com-assembly-via-tlbi1Referencing a COM assembly in Visual Studio vs converting a COM assembly via tlbimp.exeFraser2009-04-03T17:47:44Z2009-08-28T16:03:28Z
<p>When I import a COM assembly (dll) in to a Visual Studio project by adding it as a reference I can use the generated equivalent common language runtime assembly without issue.</p>
<p>However if I try and convert the same COM assembly into a common language runtime assembly using tlbimp I run in to all kinds of problems.</p>
<p>Is there a way to replicate the settings that Visual Studio uses with tlbimp?
Or to put it another way, is there a way to generate the same interop class as visual studio does by using tlbimp?</p>
http://stackoverflow.com/questions/714952/referencing-a-com-assembly-in-visual-studio-vs-converting-a-com-assembly-via-tlbi/718714#7187140Answer by Fraser for Referencing a COM assembly in Visual Studio vs converting a COM assembly via tlbimp.exeFraser2009-04-05T10:37:08Z2009-04-05T10:37:08Z<p>I found the solution myself. To replicate the settings that Visual Studio uses with tlbimp you simply need to use the /out and /namespace flags.</p>
<p>The out flag is used to prefix "Interop." on the generated file and the namespace flag is used to set the default namespace to the name of the COM assembly.</p>
<p>e.g.</p>
<pre><code>tlbimp /out:Interop.MyCom.dll /namespace:MyCom MyCom.dll
</code></pre>