B
Bill
I am writing a DLL in c#. I read about the Win32 function
IsDebuggerPresent and am wondering if I should use it to block hackers
from peeking at the business logic in my code. IsDebuggerPresent does
not block use of the .NET debugger used in VS and, of course, I do not
want to block that because I expect developers to use my DLL in that
environment. I don't know anything about unmanaged debuggers and if
they can be used to get at the soure code of my DLL and if
IsDebuggerPresent is effective for that.
What is your advice?
Bill
IsDebuggerPresent and am wondering if I should use it to block hackers
from peeking at the business logic in my code. IsDebuggerPresent does
not block use of the .NET debugger used in VS and, of course, I do not
want to block that because I expect developers to use my DLL in that
environment. I don't know anything about unmanaged debuggers and if
they can be used to get at the soure code of my DLL and if
IsDebuggerPresent is effective for that.
What is your advice?
Bill