Exemplo n.º 1
0
        public Bot(IConfiguration configuration)
        {
            dialogs = new DialogSet();

            // 5. in our Bot, add MainDialog to the top of the stack
            dialogs.Add("mainDialog", MainDialog.GetInstance(configuration));
        }