I have some problems with command views in telegram bot. i'm using telegram.bot SDK with c# asp.net:
var keyboard = new ReplyKeyboardMarkup(new[]
{
new [] // first row
{
new KeyboardButton("/help"),
new KeyboardButton("/start")
},
new []
{
new KeyboardButton("/news"),
new KeyboardButton("/lots")
}
}, resizeKeyboard: true);
The result is a similar keyboard buttons, but i need a list of commands. like this: Want this But i cant find how to do it and have this: Have this