This edition ensures keyboard markup removal when ReplyKeyboardRemove type is used in the request by setting a default value so the usage will be changed from:
await Bot.MakeRequestAsync(new SendMessage(update.Message.Chat.Id, "Test")
{
ReplyToMessageId = update.Message.MessageId,
ReplyMarkup = new ReplyKeyboardRemove(), // no need to set any values
});
This edition ensures keyboard markup removal when
ReplyKeyboardRemove
type is used in the request by setting a default value so the usage will be changed from:to: