我已經測試生成資源文件中的一些代碼:如何查看使用ResourceWriter()創建的資源文件?
// Creates a resource writer.
IResourceWriter writer = new ResourceWriter("myResources.resources");
// Adds resources to the resource writer.
writer.AddResource("String 1", "First String");
writer.AddResource("String 2", "Second String");
writer.AddResource("String 3", "Third String");
// Writes the resources to the file or stream, and closes it.
writer.Close();
如何查看什麼是保存在文件中?有沒有我可以使用的資源查看器?
你說的 '看法' 是什麼意思?只需查看內容,或者能夠在程序中使用它? – Sach
該文件不是文本文件。如果我在Visual Studio中打開它,它將以十六進制格式+ ASCII顯示文件。 –
看看這是否有幫助。 https://stackoverflow.com/q/7653679/302248 – Sach