Created
October 9, 2019 10:28
-
-
Save grandsilence/0dbff866c4264787374e047ed2c36e60 to your computer and use it in GitHub Desktop.
C# Telegram Bot Reply Keyboard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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