snippets.vb
来自「Microsoft Mobile Development Handbook的代码」· VB 代码 · 共 25 行
VB
25 行
Imports Microsoft.VisualBasic
Imports System
Imports System.Collections.Generic
Imports System.Text
Namespace CodeForChapter5cs
Friend Class Snippets
#Region "inlining"
Public Function CallingMethod() As Integer
' code that performs some task A
Me.SomeOtherMethod() ' code that performs some task B
' code that performs some task C
Return 0
End Function
Private Sub SomeOtherMethod()
' code that performs some task B
End Sub
#End Region
End Class
End Namespace
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?