vote up 2 vote down star
1

My boss keeps asking me "which version of .NET are we upgrading to", to which I answer "3.5, the latest one".

But then he sees things about how .NET 3.5 is just a set of libraries on top of .NET 2.0 and I find myself having to explain it to him.

And of course the version of C# that ships with .NET 3.5 is actually C# 3.0.

What's a good way to explain the different versions of .NET to a non-techie type in a way that doesn't confuse them or freak them out?

flag

While 3.5 is framework version, it needs language support (i.e. c# 3.0. use of linq expression is an example of language support) – shahkalpesh May 15 at 19:18

4 Answers

vote up 20 vote down check

You should decompose .NET as a package of three different things:

  1. CLR, the runtime
  2. Libraries
  3. Languages, compilers and tools

This way, it'll be pretty easier to explain.

For instance, in .NET 3.5 we have:

  1. .NET CLR v2.0
  2. v3.5 assemblies
  3. C# 3.0 compiler
link|flag
vote up 7 vote down

And just to add to Mehrdad's list:

4) Admit the nomenclature is positively retarded, and is a good reason that Microsoft's DEVDIV should take the marketing department outside and shoot them.

-Oisin

link|flag
2  
A harsh, yet just, punishment. – womp May 15 at 19:21
.NET is a stupid title for the framework. – Ronnie Overby May 15 at 19:26
2  
It's not the worst thing on the planet... The worst was Windows .NET Server Family 2003 which was fortunately renamed to Windows Server 2003! – Mehrdad Afshari May 15 at 19:27
1  
What about SharePoint 2001 WSS (Windows Storage System - the backing store element), then SharePoint 2003 WSS (Windows SharePoint Services, the whole product) ? – x0n May 15 at 19:31
Longhorn still kicks the s**t outta "vista." Feh. – Will May 17 at 18:59
vote up 0 vote down

If I were to load the .NET homepage and see all of the references to 3.5, I'd assume that was the most current version.

Maybe this diagram would help too

link|flag
And your assumption would be correct. .NET 3.5 is the latest version, currently. – Cheeso May 16 at 10:48
vote up 1 vote down

Jon Skeet gives a good overview in his book C# in Depth - Chapter 1

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.