I have a resx file with a huge number of keys and their values in L1 (Language 1) which I got from a translator. The problem is that this resx file has a lot of keys which are present in the solution in different resx files for both L1 and L2.
What I need to do is read each key from my master L1 resx file, search through all resx files in the solution ( I'll enter the base path ) and when the key is found in L2.resx, update its value in corresponding L1.resx. If key isn't found in L2, insert it along with its value in L1.resx.
Any help on this regard would be great!