Whats the difference between .Resx and .Resources file types?

后端 未结 2 1631
心在旅途
心在旅途 2021-02-13 16:58

I\'ve got a lot of .resources files, that I need to open up and view. I downloaded Zeta Resource Editor but it only works with .Resx files. Is there a difference? Can I open .Re

2条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-13 17:52

    You could always use the resgen.exe utility from visual studio to convert them into .resx files (the opposite of what happens during compilation):

    resgen.exe /compile input.resources,output.resx
    

    Resgen is often found at C:\Program Files\Microsoft SDKs\Windows\v7.0\Bin\ResGen.exe, or directly accessible from the VS command prompt.

提交回复
热议问题