ReplyKeyboardMarkup replyKeyboardMarkup = new(new[]
{
new KeyboardButton[]{ "January", "February", "March", "April"},
new KeyboardButton[]{ "May", "June", "July", "August"},
new KeyboardButton[]{ "September", "October", "November", "December"},
})
I have the following code, where ReplyKeyboardMarkup is a custom class from telegram.Bot api from nuget packages. How can I access a specified element, like first string in first KeyboardButton array (January)?

universalLayout?ReplyKeyboardMarkupconstructor, you are constrained to however that exposes the data. As this is not a class that's part of the standard library you'd have to at least specify what library you're using (a link to the NuGet package would be nice).