How to get a value from resource file using its key

前端 未结 5 1099
渐次进展
渐次进展 2021-01-11 23:55

How to get a value from resource file using its key

5条回答
  •  情歌与酒
    2021-01-12 00:41

    You can get keyvalue from global resource here.

    //TestResource is resource class name.
    
    String keyValue=string.Empty;
    
    keyValue= Resources.TestResource.KeyString;
    

提交回复
热议问题