C# Encoding a text string with line breaks

前端 未结 4 1350
暖寄归人
暖寄归人 2021-02-01 12:46

in C# I have a string I am writing to the outputstream of the response. After I save this document and open it in Notepad++ or WordPad I get nicely formatted line breaks where

4条回答
  •  醉话见心
    2021-02-01 13:03

    Try \n\n , it will work! :)

    public async Task AjudaAsync(IDialogContext context, LuisResult result){
    await context.PostAsync("How can I help you? \n\n 1.To Schedule \n\n 2.Consult");
    context.Wait(MessageReceived);
    }
    

提交回复
热议问题