首頁 > 後端開發 > C++ > 如何使用 C# 迭代 .resx 檔案中的所有資源?

如何使用 C# 迭代 .resx 檔案中的所有資源?

DDD
發布: 2024-12-29 15:53:11
原創
436 人瀏覽過

How to Iterate Through All Resources in a .resx File Using C#?

C# 中的 Resx 檔案資源擷取

存取 .resx 檔案中儲存的資源對於管理 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;
}
登入後複製

此程式碼建立一個資源管理器實例,檢索目前的資源集文化,並迭代其鍵值對,從而能夠存取.resx文件中的所有資源。

以上是如何使用 C# 迭代 .resx 檔案中的所有資源?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板