0

我不明白为什么子程序语法是这样的:

Private Sub SetText(ByVal [text] As String)
    ' InvokeRequired required compares the thread ID of the
    ' calling thread to the thread ID of the creating thread.
    ' If these threads are different, it returns true.
    If Me.textBox1.InvokeRequired Then
        Dim d As New SetTextCallback(AddressOf SetText)
        Me.Invoke(d, New Object() {[text]})
    Else
        Me.textBox1.Text = [text]
    End If
End Sub

原文链接为: MSDN上的Thread Safe calls

4

1 回答 1

0

Text语言关键字。它与Option Compare

它不是保留字,因为它只有有限的用途,所以你必须往下看第二张表,但它仍然是一个关键字。这意味着您要将其括在方括号中,以防止编译器将其视为关键字。

于 2013-03-28T02:01:29.680 回答