【发布时间】:2011-09-16 09:23:14
【问题描述】:
大家好,我想知道我是否可以将 vb.net 代码转换为 python ?!
我有这个代码
VB.net
dim t as new threading.thread( adressof x,100)
t.start
sub x
do work
end sub
我猜是这样的
def thread(self):
t = threading.thread(adressof)
self.x()
def x(self):
pass
所以有转换器吗?太好了,因为我在 vb.net 中获得了程序的源代码,而且你知道它只在 Windows 上工作,我想让它在 Linux 上工作,所以我需要 Vb 到 python 转换器.. 非常感谢大家
【问题讨论】:
-
你应该接受你之前的一些问题...
-
AddressOf 是一个 VB 运算符,因此您不能直接将其复制到 Python。