PreviousNext

.NET Managed + C Unmanaged: What’s the Cost?

by Dandy123, 2018-06-08T09:56:26.333Z

When I was programming in C#, I used to send all recursive tasks to an unmanaged C code, since the .NET performance was problematic. And now, looking back at my past experience, I think of the benefits of such code division. Do I really benefit from it, and if yes, how much? What is the best way of building API with such approach?

Read More