0

I only have 512MB RAM and found out that MSVC++ 2010 Express ran hellishly slow, so I uninstalled it. Assuming same for MSVC#. I'm planning to learn C# over the summer with the book "Pro C# and the .NET 4 platform". So I'm wondering if I can use the 2008 version?

rambo
  • 3
  • 1
  • Not that it helps, but RAM may not be as big a problem as your graphics card. Hardware acceleration would lift a huge burden off your CPU and RAM. – hemp Jun 02 '10 at 18:52
  • Also, your question is essentially identical to [998090](http://stackoverflow.com/questions/998090/can-i-use-net-4-0-beta-in-visual-studio-2008) and [1986287](http://stackoverflow.com/questions/1986287/visual-studio-2008-support-for-new-net-4). – hemp Jun 02 '10 at 18:53
  • ah sorry v___v. i didn't search well enough. – rambo Jun 02 '10 at 18:57

5 Answers5

4

You don't need Visual Studio. All you need is the framework (apparently they no longer call it the SDK). However, Visual Studio provides a number of nice features, but strictly speaking it isn't mandatory.

For an alternative IDE check SharpDevelop. I have very limited experience with it myself, so I can't really give you any useful pointers.

Brian Rasmussen
  • 114,645
  • 34
  • 221
  • 317
  • >_< I hadn't thought of that. I search for some other lightweight IDE... or just Notepad++. – rambo Jun 02 '10 at 18:59
2

Nope, you can't use 2008 for .NET 4 stuff.

Paolo
  • 22,188
  • 6
  • 42
  • 49
0

VS 2008 only does .NET 3.5 and earlier. MS doesn't retrofit new versions of the runtime / language features into older compilers. So, you're stuck with 2010 if you want to do .NET 4.

Donnie
  • 45,732
  • 10
  • 64
  • 86
  • Aw. Then is there any drawback to start learning with .NET 3.5? I already have access to the .NET 3.5 edition of the mentioned book. – rambo Jun 02 '10 at 18:54
0

All you need to develop with .NET is the SDK and a text editor.

sylvanaar
  • 8,096
  • 37
  • 59
0

Just as a fun aside, consider trying Compilr.com for online development of C# applications.

alt text http://compilr.com/images/stories/compilralpha/main.jpg

p.campbell
  • 98,673
  • 67
  • 256
  • 322