Is there anything vb.net cannot handle?

K

kronecker

Are all the .net languages the same in their capabilities or should we
stick to c++ for the really sticky problems? Is it the language or the
underlying .net framework that is important?

K.
 
C

Cor Ligthert[MVP]

Kronecker,

There are in versions visual studio 2K* 2 versions of C++, a Net version
and a MFC version.

You can for sure not do everything with Net languages, by instance no PHP,
Flash etc.

However you are a master in sending questions which are completely unclear,

So what is a sticky problem in your eyes?

Cor
 
P

Phillip Taylor

Are all the .net languages the same in their capabilities or should we
stick to c++ for the really sticky problems? Is it the language or the
underlying .net framework that is important?

K.

Unmanaged C++ can do a lot that pure .NET languages such as VB cannot.
It can perform it's own memory management and run completely
independently of the .NET runtime. It can also do more low level
things such as a Shell integration which .NET languages are incapable
of. C++ runs on Unix, Mac and Linux based systems as well.

In terms of writing desktop business applications, C++ cannot do
anything which VB.NET cannot do. With VB.NET it is generally quicker
to write and easier to debug as well. However unmanaged C++ is "the
choice" for writing computer games (especially fast moving ones with
high variable fps).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top