classes.vb

来自「OOP With Microsoft VB.NET And Csharp Ste」· VB 代码 · 共 13 行

VB
13
字号
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 + =
减小字号Ctrl + -
显示快捷键?