将vb.net转换为python

jac*_*k-X 0 python vb.net converter

你好,我想知道我是否可以将vb.net代码转换成python?!

我有这个代码 VB.net

dim t as new threading.thread( adressof x,100)
t.start

sub x
do work
end sub
Run Code Online (Sandbox Code Playgroud)

我猜它就像

def thread(self):
    t = threading.thread(adressof)
    self.x()
def x(self):
    pass
Run Code Online (Sandbox Code Playgroud)

那有转换器吗?它会是如此的好,因为我在vb.net中获得了程序的源代码,因为你知道它只在Windows上工作,我想让它在Linux中运行所以我需要Vb到python转换器..非常感谢

Bra*_*rad 6

不,没有转换器.它们是截然不同的语言,VB.NET依赖于.NET框架来运行,而Python则不然.

如果你需要让你的.NET程序在Linux下运行,那么使用Mono会好得多.