using System;
using Microsoft.VisualBasic;
namespace VisualBasic_Example
{
class Program
{
static void Main(string[] args)
{
//Create the input dialog box with the parameters below
string input = Interaction.InputBox("What is at the end of the rainbow?", "Riddle", "...", 10, 10);
//After the user has provided input, print to the console
Console.WriteLine(input);
Console.ReadLine();
}
}
}