Is there a best practice for accessing C++ native COM functions to interop from C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T08:44:50Z http://stackoverflow.com/feeds/question/671837 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/671837/is-there-a-best-practice-for-accessing-c-native-com-functions-to-interop-from-c 0 Is there a best practice for accessing C++ native COM functions to interop from C# Hayden 2009-03-22T23:57:28Z 2009-03-23T00:18:05Z <p>For example, if I have 100 C++ methods (basically a native library) that interacts with a core window component.</p> <p>I want to basically make a wrapper for these c++ methods in C#, so all my new hire employees can use that instead of C++, etc. the C++ code is legacy and scares me, so I Want to deal with it just once.</p> <p>Is the approach here, for each method have a corresponding C# method ... in fact is there any other way of doing this?</p> <p>Can I have some sort of wrapper subsystem. How do you people generally do this?</p> <p>also, are there any performance considerations, etc.?</p> http://stackoverflow.com/questions/671837/is-there-a-best-practice-for-accessing-c-native-com-functions-to-interop-from-c/671858#671858 1 Answer by 1800 INFORMATION for Is there a best practice for accessing C++ native COM functions to interop from C# 1800 INFORMATION 2009-03-23T00:08:11Z 2009-03-23T00:08:11Z <p>Why not just use COM Interop to wrap the library? Then you can more or less treat the C++ code as .Net native code that can be called in the normal fashion.</p> http://stackoverflow.com/questions/671837/is-there-a-best-practice-for-accessing-c-native-com-functions-to-interop-from-c/671874#671874 5 Answer by Jim Mischel for Is there a best practice for accessing C++ native COM functions to interop from C# Jim Mischel 2009-03-23T00:18:05Z 2009-03-23T00:18:05Z <p>If your C++ methods are in a COM object, then you can use COM interop from C#. See <a href="http://msdn.microsoft.com/en-us/magazine/cc163494.aspx" rel="nofollow">CLR Inside Out: Introduction to COM Interop</a> for a good introduction.</p> <p>If those C++ methods are more like traditional API calls, then you'll want to use Platform Invoke (i.e. PInvoke). That entails creating managed prototypes in C# for the unmanaged (C++ functions). A good place to start is the <a href="http://msdn.microsoft.com/en-us/library/aa288468.aspx" rel="nofollow">Platform Invoke Tutorial</a>.</p> <p>As far as performance considerations go, there typically won't be much to worry about. Calling from C# <em>might</em> be fractionally slower than calling directly from C++, in large part due to marshaling data. Unless the code you're calling is in a critical loop, you're not going to notice any difference.</p> <p>It really depends on what those native functions do. The more you have to share data between the unmanaged and managed worlds, the more difficult the process becomes. Without more information about your specific functions, it's difficult to say where you might encounter problems.</p>