Step 1: Click New Project, then select Visual C# on the left, then Windows and then select Windows Forms Application. Name your project "LiveCurrencyConverter" and then click OK
Step 2: You need to add a web browser control to your form as below

Add code to handle form load event
private void Form1_Load(object sender, EventArgs e)
{
webBrowser.Navigate("https://www.google.com/finance/converter");
}
VIDEO TUTORIALS