In Delphi, you can do something like this in the source code.
{$SETPEFLAGS IMAGE_FILE_LARGE_ADDRESS_AWARE}
How can I do the same thing in C# code so I don't have to use external command such as editbin
In Delphi, you can do something like this in the source code.
{$SETPEFLAGS IMAGE_FILE_LARGE_ADDRESS_AWARE}
How can I do the same thing in C# code so I don't have to use external command such as editbin
How can I do the same thing in C# code so I don't have to use external command such as
editbin
?
You cannot. You would need to use an external tool.