I have found this Sub delaration:
Private Sub ReceivedText(ByVal [text] As String) 'input from ReadExisting
If Me.lblStatus.InvokeRequired Then
Dim x As New SetTextCallback(AddressOf ReceivedText)
Me.Invoke(x, New Object() {(text)})
Else
Me.lblStatus.Text &= [text] 'append text
End If
End Sub
I don't understand the [] in [text]. What does it mean ?
Thank you.