TextFieldParser.LineNumber Propiedad

Definición

Devuelve el actual número de línea o devuelve -1 si no hay más caracteres disponibles en la secuencia.

public:
 property long LineNumber { long get(); };
public long LineNumber { get; }
member this.LineNumber : int64
Public ReadOnly Property LineNumber As Long

Valor de propiedad

Número de línea actual.

Ejemplos

En este ejemplo se busca el nombre "Jones" en el archivo de texto y se informa de las líneas en las que se produce.

Using FileReader As New Microsoft.VisualBasic.FileIO.TextFieldParser("C:\ParserText.txt")
    FileReader.TextFieldType = Microsoft.VisualBasic.FileIO.FieldType.Delimited
    FileReader.Delimiters = New String() {","}
    Dim currentRow As String()
    While Not FileReader.EndOfData
        Try
            currentRow = FileReader.ReadFields()
            Dim currentField As String
            For Each currentField In currentRow
                If currentField = "Jones" Then
                    MsgBox("The name Jones occurs on line " & 
                    FileReader.LineNumber)
                End If
            Next
        Catch ex As Microsoft.VisualBasic.FileIO.MalformedLineException
            MsgBox("Line " & ex.Message & 
           "is not valid and will be skipped.")
        End Try
    End While
End Using

Comentarios

Se trata de un miembro avanzado; no se muestra en IntelliSense a menos que haga clic en la pestaña Todo .

Las líneas en blanco y los comentarios no se omiten al determinar el número de línea.

Se aplica a

Consulte también