在某些情況下,我們的項目我們必須忽略當前文化應用 和英語獲取資源。只有英語如何從特定的資源文件的字符串資源在C#
我們基本上做到像所有的語言
<label>@ModelEntities.Properties.Resource.Gender</label>
怎麼可能得到?
我假設我們不知何故創建了一些參考Resource.resx
?
我用
ResourceManager rm = new ResourceManager("Resource.Strings",
Assembly.GetAssembly(typeof(ModelEntities.Properties.Resource)));
var s = rm.GetString("Age");
但好像不工作。
謝謝!
This works.Thank you – 2017-05-16 09:41:52