gpt4 book ai didi

c# - 使用 .axe 从全局 resources.resx 中检索变量

转载 作者:太空宇宙 更新时间:2023-11-03 14:10:43 34 4
gpt4 key购买 nike

如何使用 webresource.axd(或其他 .axd)从全局 resource.resx 中检索变量?我知道使用 webresource.axd 检索嵌入文件的方法,但是有什么方法可以从 .resx 文件中检索吗?

最佳答案

.resx 资源文件通常只是一个 XML 文件。

要检索 .resx 文件中资源的名称和值,您应该使用 ResXResourceReader类。

// create a ResXResourceReader for the file items.resx
ResXResourceReader rsxr = new ResXResourceReader("items.resx");

// iterate through the resources and display the contents to the console
foreach (DictionaryEntry d in rsxr)
{
Console.WriteLine(d.Key.ToString() + ":\t" + d.Value.ToString());
}

// close the reader
rsxr.Close();

希望对您有所帮助!

关于c# - 使用 .axe 从全局 resources.resx 中检索变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7951622/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com