is there any possebilety (dont know how to spell that :P) to convert
c++ Code's to Vb.net code's ?
greetz zeth
c++ Code's to Vb.net code's ?
greetz zeth
omg thank you so much :D i am searching for this for over a week :D really thanks :)Quote:
[Only registered and activated users can see links. Click Here To Register...]
It doesnt work for all kind of codes.Quote:
Lol how the fuck is this possible?
I always thought converting a Source Code or Script from one programming language into another one is impossible.
I mean how would the Converter deal with namespaces or , the other way arround, how would he convert a c# switch statement with a string into a regular c++ one( ok this is probably a bad example
because he could resolve it as if statements but i think you get what i am
sayin')
#include <iostream>
using namespace std;
int main(int argc, char** argv)
{
cout << "Hallo, das ist ein Test!" << endl;
cout << "Noch ein Test." << endl;
cin.get();
return 0;
}
using System;
public class Globals
public static int Main(string [] argv)
{
cout << "Hallo, das ist ein Test!" << endl;
cout << "Noch ein Test." << endl;
cin.get();
return 0;
}
}
I didnt post this site here and you call me an idiot ?Quote:
AHAHAHA THIS MADE MY DAY!!
Skynet you idiot!This Website cant even cope with converting a Hello World Application.
!Quote:
But if its just simple stuff, it works great.