Managed Code in Unmanaged

If I use dll dll from delphi code while exporting types, will managed code have its own thread or will it work in delphis thread? or should I create a thread in the dll if I want it to work in a new thread?

I want to call the .net function from unmanaged code. and I want it to work async.

+5
source share
1 answer

Managed code will not receive a new thread automatically. You need to scroll the thread yourself and call the managed code in that thread.

Of course, you can use streams inside .NET code.

+5
source

All Articles