views:

380

answers:

1

Hey,

i know how to retrieve and create resource entries in an .resx file programmatically. I am using the ResourceWriter and the ResourceReader for that approach. But now i want to clean up several items in my .resx file, and want to delete them. How can i achieve that?

Greetings chrsk

+4  A: 

Using the ResXResourceReader and ResXResourceWriter classes

Read your resx using the reader and feed it into the writer, omitting entries you want removed.

psychotik