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 .Resources files and extract its contents?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Generic Generics in Managed C++
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
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 is often found at C:\Program Files\Microsoft SDKs\Windows\v7.0\Bin\ResGen.exe, or directly accessible from the VS command prompt.
I think
resx
file contains thenon-compiled
resources in XML based format. Theseresx
files are compiled into.resource
file. So.resource
file containsresx
data inbinary
format.According to MSDN