Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
private string someString;
public string SomeString
{
[INDENT]get
{
[INDENT]return someString;[/INDENT]
}
set
{
[INDENT]someString = value;[/INDENT]
}[/INDENT]
}
public string SomeString { get; set; }
VS 2003 does seem lightweight compared to 2005 and 2008.The only thing I noticed with 2008 is that my pc needs more RAM (and I have 2GB). It seems that every time I upgrade Visual Studio, I need to double the RAM.
Try VC++ 6, which didn't have any of the managed code foolishness.VS 2003 does seem lightweight compared to 2005 and 2008.
I know, it loads and runs smoothly on even low end hardware. I don't use it at work and I haven't touched it at home since I upgraded to Vista.Try VC++ 6, which didn't have any of the managed code foolishness.
Except that VC6 was arguably the worst C++ compiler I've ever used. You didn't even have to get into that complex of code (I'm talking just the plain C++ spec here), and everything else - Dev-C++, gcc, IBM's compilers - would compile it just fine and VC6 would just choke. The .NET C++ compilers have been excellent and are some of the best especially in terms of giving good error messages, but I can't stand VC6.Try VC++ 6, which didn't have any of the managed code foolishness.
Yep, that's very much arguable.Except that VC6 was arguably the worst C++ compiler I've ever used.