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 のスレッド セーフ呼び出し

4

1 に答える 1

0

Text言語キーワードです。と併用ですOption Compare

予約語ではありません。用途が限られているため、2 番目の表を見下ろす必要がありますが、それでもキーワードです。つまり、コンパイラがキーワードのように扱わないように、角括弧で囲みます。

于 2013-03-28T02:01:29.680 に答える