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?

Re: Difference between VS 2005 and VS 2005 Express by PvdG42

PvdG42
Sat Mar 08 10:07:03 CST 2008

"Curious" <fir5tsight@yahoo.com> wrote in message
news:78c1c293-cf6c-4673-88d3-955060427f84@13g2000hsb.googlegroups.com...
> 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.


Re: Difference between VS 2005 and VS 2005 Express by Curious

Curious
Sat Mar 08 10:55:27 CST 2008


> Which Express Edition? VB, VC, VC#, Web?
> As the express editions use the full .NET Framework =A0class hierarchy, yo=
u
> should not encounter problems using the classes that support multithreadin=
g.

It's C#.NET. I want to do a lot of multi-threading.

Re: Difference between VS 2005 and VS 2005 Express by Dick

Dick
Sat Mar 08 12:50:38 CST 2008

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.



Re: Difference between VS 2005 and VS 2005 Express by Curious

Curious
Sun Mar 09 14:20:32 CDT 2008

Thanks for the valuable advice!