这是我的代码:
For Each itema In ListBox3.Items
Dim source As String = getsource(itema)
If source.Contains("blz blz blz") Then
ListBox2.Items.Add(itema & "====> here is one")
Else
ListBox2.Items.Add(itema)
End If
Next
如何在不等待 vb.net 中所有项目的循环的情况下获得每个项目的结果?在 PHP 中有 flush 和 ob_flush 来刷新内存。