Let's start coding
Perform the following steps to create the bot application:
- Create a new C# project using the new
Bot Application
template. - Navigate to
New
|Project...
in Visual Studio 2015; it will open the following window:

- Select the
Bot Application
template, give it a name, and click onOK
:

Creating an account with the bot
Here, I will explain how to build a FormFlow to create an account with this bot. To start the FormFlow and create an account, you need to create a C# class to define the form you want the information to be completed.
Create an enum with all the options we are going to implement, as shown here:
public enum Options { CreateAccount, [Terms(new string[] { "savings balance", "Savings Account Balance" })] [Describe("Savings Account Balance")] SavingsAccountBalance, [Terms(new string[] { "current balance", "Current Account Balance" })] [Describe("Current Account...