I am using the following code to generate resource file programmatically.
ResXResourceWriter resxWtr = new ResXResourceWriter(@"C:\CarResources.resx");
resxWtr.AddResource("Title", "Classic American Cars");
resxWtr.Generate();
resxWtr.Close();
Now, I want to modify the resource file created from the above code. If I use the same code, the existing resource file gets replaced. How to modify it without losing the existing contents?