本文介绍了将C#代码转换为VB代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
此C#代码的VB代码是什么?...
What would be the VB code for this C# code?...
BeginInvoke(
new Action(() =>
{
explorerList = list;
dgvObjectExplorer.RowCount = explorerList.Count;
dgvObjectExplorer.Invalidate();
})
还有这个...
And This...
ThreadPool.QueueUserWorkItem(
(o)=>ReBuildObjectExplorer(text)
);
推荐答案
ThreadPool.QueueUserWorkItem(Function(o) ReBuildObjectExplorer(text))
对于第一个,它需要更多代码来支持转换.
For the first one, it requires more code to support conversion.
这篇关于将C#代码转换为VB代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!