将字符串从 resx 获取到数组而不循环 - C#.net

发布于 2024-09-10 18:26:05 字数 107 浏览 5 评论 0原文

我想从 resx 文件中读取所有字符串并将其加载到数组中而不循环。我正在开发一个 ASP.NET Web 应用程序,并且使用 C#。我怎样才能得到字符串?

谢谢

NLV

I want to read all the strings from a resx file and load it into an array without looping. I'm working in an asp.net web application and i'm using C#. How can i get the strings?

Thank you

NLV

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

百善笑为先 2024-09-17 18:26:05
string[] allStrings;
using (var reader = new ResXResourceReader(fileName))
{
    allStrings = reader.Cast<DictionaryEntry>().Select(o => o.Value).OfType<string>().ToArray();
}
string[] allStrings;
using (var reader = new ResXResourceReader(fileName))
{
    allStrings = reader.Cast<DictionaryEntry>().Select(o => o.Value).OfType<string>().ToArray();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文