Difference between VS 2005 and VS 2005 Express

  • Thread starter Thread starter Curious
  • Start date Start date
C

Curious

What's the difference between Visual Studio 2005 and Visual Studio
2005 Express?

I want to start a project on multi-threading in .NET. Will using
Visual Studio 2005 Express be sufficient?
 
Curious said:
What's the difference between Visual Studio 2005 and Visual Studio
2005 Express?

I want to start a project on multi-threading in .NET. Will using
Visual Studio 2005 Express be sufficient?


Which Express Edition? VB, VC, VC#, Web?
As the express editions use the full .NET Framework class hierarchy, you
should not encounter problems using the classes that support multithreading.
 
Which Express Edition? VB, VC, VC#, Web?
As the express editions use the full .NET Framework  class hierarchy, you
should not encounter problems using the classes that support multithreading.

It's C#.NET. I want to do a lot of multi-threading.
 
No difference, with respect to the .NET framework, for threading.

Express does not support (for example) creating projects for Compact
Framework devices, which requires Standard Edition or higher -- just as one
limitaton.

--
Richard Grier, MVP
Hard & Software
Author of Visual Basic Programmer's Guide to Serial Communications, Fourth
Edition,
ISBN 1-890422-28-2 (391 pages, includes CD-ROM). July 2004, Revised March
2006.
See www.hardandsoftware.net for details and contact information.
 
Back
Top