0
私はC#の に電報ボットにInlineKeyBordを作成したいが、私はこのエラーを持っている:エラーCS0234 t
CS0234 The type or namespace name 'SendTextMessageAsync' does not exist in the namespace 'Telegram.Bot'
var keyboard = new ReplyKeyboardMarkup(new [] {
new [] // 1st row
{
new KeyboardButton("1"),
new KeyboardButton("2"),
},
new [] // 2nd row
{
new KeyboardButton("3"),
new KeyboardButton("4"),
}
});
await Telegram.Bot.SendTextMessageAsync(message.Chat.Id, "Choose", replyMarkup: keyboard);
私はこのコードを試しましたが、私は2つのエラーがあります:1エラー\t CS0118 \t 'Telegram.Bot'は名前空間ですが、タイプのように使用されます。私はtelegram.Botを使用していた –
私はコードを更新しました。 – mjwills