I have a machine that I have Mappoint 2006 installed. I am trying to write an app in C# that will allow me to open Mappoint and add pushpins. I have done this in VB.NET 2005, but I am not sure where to begin with C#. Anyone help me with this? I do not want to use the Mappoint Control.

Thanks folks.

Current VB.NET code
VB Code:
  1. Public Class Form1
  2.  
  3.     Dim aMap As MapPoint.Application
  4.  
  5.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  6.  
  7.         If aMap.Application Is DBNull.Value Then
  8.             aMap = CreateObject("mappoint.application")
  9.             aMap.Visible = True
  10.             aMap.UserControl = True
  11.  
  12.             aMap.NewMap()
  13.             aMap.WindowState = GeoWindowState.geoWindowStateMaximize
  14.         End If
  15.  
  16. ...