Declaring a looooong single line string in C#

后端 未结 11 1002
礼貌的吻别
礼貌的吻别 2021-02-05 00:58

Is there a decent way to declare a long single line string in C#, such that it isn\'t impossible to declare and/or view the string in an editor?

The options I\'m aware o

11条回答
  •  孤独总比滥情好
    2021-02-05 01:42

    Use the Project / Properties / Settings from the top menu of Visual Studio. Make the scope = "Application".

    In the Value box you can enter very long strings and as a bonus line feeds are preserved. Then your code can refer to that string like this:

    string sql = Properties.Settings.Default.xxxxxxxxxxxxx;

提交回复
热议问题