All of the answers so far have confused C++ and "C++ .Net" (which is actually now called C++/CLI) - these are two completely separate languages.
C++ is compiled to native machine code. C++/CLI is compiled to CIL (.Net) bytecode. Because of this, C++ programs will tend to be a bit faster than C++/CLI code. C++ is about 30 years old, and is widely used in the programming world. C++/CLI, on the other hand, is about 10 years old, and is not widely utilized. Its main purpose is to make translating C++ programs onto .Net much easier - going from C++ to C++/CLI is a lot less work than going from C++ to C#.
There is another confusion in one of your comments above: between VB6 and VB.Net. VB6 was Microsoft's old VB language, now deprecated. It was compiled to native machine code, though there was a widespread belief (mostly true) that it was slower than C++. VB.Net is Microsoft's new VB language, compiled to CIL.
Now: performance. C++ is usually going to be the fastest, simply because it's compiled to native machine code, and because people have been working on optimizing its compilers for 30 years. This is what you'll usually see video games and other high-performance applications written in, but, compared to the other languages, it's kind of a pain to work with.
Between .Net languages, the two big ones - C# and VB.Net - are mostly the same performance-wise. Though I have no benchmarks to prove this, I would guess that C++/CLI is actually slightly slower, simply because Microsoft hasn't put as much emphasis on that language, so there probably aren't as many programmers working on optimizing its compiler.
IronPython, since it does not have a full-time team working to optimize its compiler, is probably going to be the slowest. It also runs above the DLR, which is just another layer of indirection. Also, another answer states that it's interpreted, which would be a performance-killer.