For example, if I have 100 C++ methods (basically a native library) that interacts with a core window component.
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.
Is the approach here, for each method have a corresponding C# method ... in fact is there any other way of doing this?
Can I have some sort of wrapper subsystem. How do you people generally do this?
also, are there any performance considerations, etc.?