program.vb

来自「Microsoft Mobile Development Handbook的代码」· VB 代码 · 共 18 行

VB
18
字号
Imports Microsoft.VisualBasic
Imports System
Imports System.Windows.Forms

Namespace CodeForChapter11cs
  Friend Class Program
	''' <summary>
	''' The main entry point for the application.
	''' </summary>
	Private Sub New()
	End Sub
	<MTAThread> _
	Shared Sub Main()
      'Application.Run(New frmMoreThreads())
	  Application.Run(New frmResetEvent())
	End Sub
  End Class
End Namespace

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?