Example
- Open Visual Studio

- Select File --> New --> Project menu or push Ctrl + Shift + N buttons

-
Select Outlook VSTO Add-in template

-
Add the following code to the project:
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
MessageBox.Show("Hello world");
}
- Run the program
