开发者

convert vb.net to python [closed]

开发者 https://www.devze.com 2023-03-13 21:29 出处:网络
Closed. This question is seeking recommendations for books, tools, software libraries, and more. It does not meet Stac开发者_如何学Ck Overflow guidelines guidelines. It is not currently accepting answ
Closed. This question is seeking recommendations for books, tools, software libraries, and more. It does not meet Stac开发者_如何学Ck Overflow guidelines guidelines. It is not currently accepting answers.

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 11 months ago.

Improve this question

hello guys i'm wondering if i can convert vb.net codes to python ?!

i have this code VB.net

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

sub x
do work
end sub

i guess it's like

def thread(self):
    t = threading.thread(adressof)
    self.x()
def x(self):
    pass

so there any converter ? it would be so nice because i got source code for program in vb.net and as you know it's work on only Windows and i want to make it work in Linux so i need Vb to python converter .. thanks a lot guys


No, there is no converter. They are wildly different languages and VB.NET relies on the .NET framework to function, which Python doesn't.

If you need to get your .NET program working under Linux, you would be much better off utilizing Mono.


There is Visual Basic -> Python translator called vb2py, but it hasn't been updated in several years. I'm currently working on a tool called universal-transpiler that translates a subset of VB.NET into several other languages, including Python.


Here there are two converters:

http://vb2py.sourceforge.net/

https://www.digitalcoding.com/tools/vb-csharp-to-python-code-converter.html

0

精彩评论

暂无评论...
验证码 换一张
取 消