Created
October 2, 2010 07:51
-
-
Save nissuk/607428 to your computer and use it in GitHub Desktop.
VB.NET: アプリケーションのエントリポイント
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' <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