如何获取我的资源文件,然后从c#中的key获取值

时间:2014-10-03 09:59:17

标签: c#

我在App_LocalResources文件夹中有Home.aspx.hi-in.resx资源文件,其中包含一个键“infoRes.Text” 我正在使用以下代码获取Home.aspx.cs文件中的键“infoRes.Text”的值,但收到错误..!

protected override void InitializeCulture()    
    {
        ResourceManager rm = new ResourceManager("Home", typeof(Home).Assembly);
        CultureInfo culture = CultureInfo.CreateSpecificCulture("hi-in");
        string s = rm.GetString("infoRes.Text", culture);
    }

0 个答案:

没有答案