Skip to content

Instantly share code, notes, and snippets.

@grandsilence
Created October 9, 2019 10:28
Show Gist options
  • Save grandsilence/0dbff866c4264787374e047ed2c36e60 to your computer and use it in GitHub Desktop.
Save grandsilence/0dbff866c4264787374e047ed2c36e60 to your computer and use it in GitHub Desktop.
C# Telegram Bot Reply Keyboard
var keyboard = new InlineKeyboardMarkup(new InlineKeyboardButton[][]
{
new [] {
new InlineKeyboardButton {
Text ="Текст для первой кнопки",
CallbackData = "cb1"
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment