Josh
Josh

Reputation: 101

String Table Resource in Native Executable

Using C#, can I modify the string table resource of a native windows executable?

Upvotes: 1

Views: 1016

Answers (1)

Frédéric Hamidi
Frédéric Hamidi

Reputation: 262959

As far as I know, there's no support for doing that in the .NET Framework. You'll probably have to p/invoke BeginUpdateResource(), UpdateResource() and EndUpdateResource() from your code.

You can find an example of modifying resources in unmanaged code here. Although it involves dialog boxes instead of string tables, it might give you a starting point.

Upvotes: 1

Related Questions