1
如何開始讀取我想要在某一行打開的文件?我需要打開的文件有一個標題,數據在第二行之前不會啓動,但我不知道如何將它放入代碼中,我從來沒有做過。在某些行讀取文件
dt.Columns.Add("Mouse Command")
dt.Columns.Add("Mouse Position")
Dim delimiter As String = ","
Using parser As New TextFieldParser(file)
parser.SetDelimiters(delimiter)
While Not parser.EndOfData
' Read in the fields for the current line
fields = parser.ReadFields()
r = dt.NewRow