read string from .resx file in C#

前端 未结 14 2270
一生所求
一生所求 2020-12-02 06:01

How to read the string from .resx file in c#? please send me guidelines . step by step

14条回答
  •  囚心锁ツ
    2020-12-02 06:39

    This works for me. say you have a strings.resx file with string ok in it. to read it

    String varOk = My.Resources.strings.ok
    

提交回复
热议问题