Is there any debugger library which can attach to process? (C#)

81 views Asked by At

I'm looking for some external library which will allow me to attach to some other running process.
I actually want to detect all the API Functions that the process is using. I can do it through Python (with the module PyDbg), but I want to do this task in C#. Is there any library that can do this work? I will be glad to hear about some libraries which can do this.

Thank you.

1

There are 1 answers

0
aevitas On

No. You should be looking to use a lower level language to do this.