I wanted to create an XML File from Resouce File(.resx).
I succeeded in that by using ResXResourceReader class. But then I came to know that there exist another class for this purpose ResourceReader.
Then what is the difference between them? and which one should be used for this purpose.
Same case with ResourceWriter and ResXResourceWriter. What difference do they have between them?
ResourceReader reads binary and ResXResourceReader reads XML.
ResourceReader MSDN:
ResXResourceReader MSDN:
More information can be found here.