📄 classes.vb
字号:
Public Class Classes
Private m_linesOfCode As Integer = 0
Private m_classNames As New System.Collections.ArrayList()
Public Sub ReadFromFile(ByVal fullPath As String)
Try
Dim reader As New System.IO.StreamReader(fullPath)
Dim nameStart As Integer
Dim oneline As String
oneline = reader.ReadLine()
While (Not (oneline Is Nothing))
oneline = oneline.Trim()
If ((oneline <> "") And (Not oneline.StartsWith("
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -