About the Single line address geocoding Sample
[C#]
Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace SingleLineGeocoding { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new SingleLineGeocodingForm()); } } }
[Visual Basic .NET]
Program.vb
Imports Microsoft.VisualBasic Imports System Imports System.Collections.Generic Imports System.Linq Imports System.Windows.Forms Namespace SingleLineGeocoding Friend Class Program ''' <summary> ''' The main entry point for the application. ''' </summary> Private Sub New() End Sub <STAThread> _ Shared Sub Main() Application.EnableVisualStyles() Application.SetCompatibleTextRenderingDefault(False) Application.Run(New SingleLineGeocodingForm()) End Sub End Class End Namespace