I need to write some dll that will be loaded into some existing system via COM. How much performance do I lose if I write using c#.net instead of plain c++?
Asked
Active
Viewed 170 times
1 Answers
1
In general, none.
Things to watch out for:
- Creating lots of strings by performing lots of string concats; but that in itself won't necessarily be a problem
- Excessive Boxing/Unboxing

Mitch Wheat
- 295,962
- 43
- 465
- 541