Reputation: 101
Using C#, can I modify the string table resource of a native windows executable?
Upvotes: 1
Views: 1016
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