MyResources.LocalizedText.Option1
我在我的某个网页上使用了本地化。例如,当我想根据页面文化显示文本时,我使用上面的代码。
到目前为止一切顺利。现在我想基于变量获取localizedText,如下所示:
var option = "Option1",
MyResources.LocalizedText. //here I want to have the value of the variable option (which in this case is Option1).
我该怎么做?
由于
答案 0 :(得分:1)
尝试
MyResources.LocalizedText.ResourceManager.GetString(option, MyResources.LocalizedText.Culture)
或
MyResources.LocalizedText.ResourceManager.GetString(option)
有关.GetString方法的说明,请参阅here。