📄 snippets.vb
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -