gpt4 book ai didi

c# - 循环遍历 .resx 文件中的所有资源

转载 作者:IT王子 更新时间:2023-10-29 03:33:28 28 4
gpt4 key购买 nike

有没有办法在 C# 中循环遍历 .resx 文件中的所有资源?

最佳答案

您应该始终使用资源管理器而不是直接读取文件以确保将全局化考虑在内。

using System.Collections;
using System.Globalization;
using System.Resources;

...

/* Reference to your resources class -- may be named differently in your case */
ResourceManager MyResourceClass =
new ResourceManager(typeof(Resources));

ResourceSet resourceSet =
MyResourceClass.ResourceManager.GetResourceSet(CultureInfo.CurrentUICulture, true, true);
foreach (DictionaryEntry entry in resourceSet)
{
string resourceKey = entry.Key.ToString();
object resource = entry.Value;
}

关于c# - 循环遍历 .resx 文件中的所有资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2041000/

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