C# 如何在botframework中实现语言生成文件的换行

C# 如何在botframework中实现语言生成文件的换行,c#,botframework,C#,Botframework,我的机器人的语言生成文件中有很长的文本行。如何中断代码行以提高可见性 # PromptForDestinationCity - Where would you like to travel to? There are plenty of options. Just choose one. Or do whatever else you would like to. Enjoy! - What is your destination city? (但会导致错误) 请参见关于多行文字的说明 基本上

我的机器人的语言生成文件中有很长的文本行。如何中断代码行以提高可见性

# PromptForDestinationCity
- Where would you like to travel to? There are plenty of options. Just choose one. Or do whatever else you would like to. Enjoy!
- What is your destination city?
(但会导致错误)

请参见关于多行文字的说明

基本上:

# PromptForDestinationCity
- ``` Where would you like to travel to? 
      There are plenty of options. 
      Just choose one. Or do whatever else you would like to. Enjoy!
  ```
- What is your destination city?
# PromptForDestinationCity
- ``` Where would you like to travel to? 
      There are plenty of options. 
      Just choose one. Or do whatever else you would like to. Enjoy!
  ```
- What is your destination city?