Skip to content

Instantly share code, notes, and snippets.

@nissuk
Created October 2, 2010 07:51
Show Gist options
  • Save nissuk/607428 to your computer and use it in GitHub Desktop.
Save nissuk/607428 to your computer and use it in GitHub Desktop.
VB.NET: アプリケーションのエントリポイント
''' <summary>
''' </summary>
''' <remarks>http://dobon.net/vb/dotnet/programing/makeentrypoint.html</remarks>
Public Class Program
<STAThread()> _
Public Shared Sub Main()
Application.EnableVisualStyles()
Application.SetCompatibleTextRenderingDefault(False)
Application.Run(New Form1)
End Sub
End Class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment