make telegram bot出错

时间:2017-10-04 17:51:44

标签: c# telegram telegram-bot

我在制作电报机器人问题!!!这是错误! CS0029 Cannot implicitly convert type 'string[][]' to 'NetTelegramBotApi.Types.KeyboardButton[][]

  

注意:我使用C#制作机器人!

请帮忙 感谢

2 个答案:

答案 0 :(得分:0)

错误日志只表示您将string设为KeyboardButton,请生成KeyboardButton

答案 1 :(得分:-1)

您可以使用以下代码:

mainMenu = new ReplyKeyboardMarkup {
  Keyboard = new KeyboardButton[][] {
    new KeyboardButton[] {
      new KeyboardButton("Your Text")
    }
  }
};