I've a sample bot using Microsoft's .NET Bot framework.
I would like to create a menu to Facebook messenger.
What text do I need to append and how to catch the option that the user selected?
This is what I have right now:
strReplyMessage.Append($"Hello, I am **TestBot** Bot");
strReplyMessage.Append($"\n");
strReplyMessage.Append($"You can say anything");
strReplyMessage.Append($"\n");
strReplyMessage.Append($"to me and I will repeat it back");
strReplyMessage.Append($"\n\n");
strReplyMessage.Append($"What is your name?");
Any clue?