vote up 5 vote down star
1

It's my favourite language at the moment and I'm interested in learning its history.

flag

3  
nothing better to do? – Pondidum Sep 24 at 15:09
4  
Why was this closed??? Question is NOT argumentative, and why punish someone for (subjectively) saying C# is their favourite language? – Tom Bushell Sep 24 at 15:56
2  
I vote to reopen, this is a good discussions, probably the title is just framed in the wrong light. – Nick Berardi Sep 24 at 16:05
1  
Title could be better I admit. Any suggestions for a new one? – Davie Sep 24 at 16:32
1  
Maybe "Why did MS invent C# instead of staying with Java?" – Tom Bushell Sep 24 at 16:35
show 4 more comments

10 Answers

vote up 5 vote down

Java.

Simple question, simple answer.

link|flag
Why did they not just use Java like everyone else? – Davie Sep 24 at 15:10
2  
en.wikipedia.org/wiki/… – Pavel Minaev Sep 24 at 15:12
2  
@Davie: Everyone used Java at that time? – Cecil Has a Name Sep 24 at 15:24
Was Java not the most popular OO language at the time c# was being developed? I should have been more specific :-( – Davie Sep 24 at 15:51
4  
So far as I know, .NET (or what would become that eventually) was already being developed in 1997. Java 1.0 was released in 1996. No, it wasn't the most popular OO language then - C++ was. Also, Java still had pretty bad performance at that point, and especially bad performance and L&F in UI department, which is obviously something of a must for a Windows application platform. And when MS tried to extend Java to allow for convenient native UI development on Windows, Sun sued. – Pavel Minaev Sep 24 at 15:59
show 1 more comment
vote up 18 vote down

Semicolons are mathematically proven to make your language at least 9% sexier.

link|flag
11  
78% of all statistics... Ah well, you get the point. – Jan Sep 24 at 15:10
right, but C/C++ already had semi-columns... – Thomas Levesque Sep 24 at 16:44
vote up 1 vote down

Try to get away from the 'Basic' stuff as C(++) and Java devs thought VB was way too lame to switch.

Furthermore: It sounds way cooler on parties when saying 'Hey I'm C-SHARP!', then 'I'm Visual Basic'. Just ain't gonna score you anything.

link|flag
vote up 17 vote down

Here's a little history.

link|flag
2  
Decent link, but link-only makes for a poor answer. Could you summarize or rephrase what's detailed on that page, and/or perhaps add another reference? – Shog9 Sep 27 at 17:28
2  
I could, but then I'd be part of the Department of Redundancy Department. – ctacke Sep 28 at 0:48
vote up 0 vote down

42

link|flag
vote up 6 vote down

General consensus is that they wanted a post-C++ language that had all the stuff Java offered, but wasn't tied to the JVM. As Sam Meldrum noted, the CLR and C# are basically Java and the JVM implemented by a different development team.

The CLR has also allowed them to consolidate a lot of under the hood work so that improvements in language capabilities can be shared between Visual Basic and C#; it gives them a clean 'Noob language' vs 'Pro language' upsell opportunity.

link|flag
2  
There's more to it. For example, note how CLR is powerful enough to have full ISO C++ implemented on top of it - think raw data/function pointers and arithmetic, unions, stackalloc... JVM was simply never there. – Pavel Minaev Sep 24 at 15:19
Not just C++, but dynamic languages too. See this blog post: blogs.msdn.com/hugunin/archive/… Jim Hugunin was a pioneer of running dynamic languages on the Java VM. He tried the same thing on the CLR and was so blown away by how much better the CLR was, he switched over completely and now works for Microsoft. – Earwicker Sep 24 at 15:29
2  
Microsoft never marketed VB.NET as a “noob language”, ever (not even in comparison to C#). – Konrad Rudolph Sep 24 at 15:37
2  
That's because MS are very gracious. – Robert Grant Sep 24 at 16:33
This is entirely a matter of perspective. Note that VB6 is object oriented, has a runtime, has the GUI designers and the code behind programming, etc. - it really makes sense to see .NET as a logical continuation of VB6 and C# as an attempt to get the C++ programmers on board. – reinierpost Oct 5 at 8:21
vote up 1 vote down

C# is also an easier way to do components than COM/C++. COM is neither an easy nor a forgiving environment to program in. I don't know all of the technical details, but I do recall that a lot of the things that COM provided through lots of work C# provides for 'free'.

link|flag
vote up 13 vote down

Below is a brief outline I did for someone a while back answering this question:

C#

  • intended as a simple general - purpose object-oriented programming
  • development led by Anders Hejlsberg
    • Hejlsberg previously had designed Borland's Turbo Pascal
  • syntax similar to C++
  • initially called COOL for C-like Object Orientated Language
  • renamed C# because it is a step above C/C++
    • # (sharp) means a semi-tone above in music
    • can also be viewed as a stacked 4 pluses so C++++
  • C# is the .NET language that is most similar to the CLR
  • Hejlsberg strived to create constructs as answers to issues he saw in (C++, Java, Delphi etc.)
    • Stated Goals
      • support for software engineering
        • strong type checking
        • array bounds checking
        • detection of attempts to utilize uninitialized variables
        • automatic garbage collection
      • software robustness and durability are important
      • allow for use in distributed environments
      • not intended as direct competitor C/C++

Further Reading

link|flag
vote up 5 vote down

Microsoft were using Java, they had their own JVM and supported it in Internet Explorer, but they wanted Java to interoperate with existing C++/VB code bases, and extended Java to provide that.

Sun didn't like that, because it didn't want to see "Microsoft Java" applications that wouldn't run on Sun hardware, so it took them to court to have Microsoft's Java implementation banned, and won.

Without those extensions, Java's appeal to Microsoft (namely, as a much superior replacement for both C++ and VB in most of their application areas) was lost, so they recreated what they needed as C#/VB.NET.

link|flag
vote up 1 vote down

The codename of C# was Project Cool, which was rumoured to be a clean-room implementation of Java. This was back in the days when Sun was suing Microsoft over bastardizing the Java language. As I recall, Sun didn't like the Microsoft-specific extensions in J++, which allowed it to interoperate with COM. So where did the name C# come from?

C# name was musically inspired. It is a C-style language that is a step above C/C++, where sharp (#) means a semi-tone above the note. (Being a musician myself, I think this is awfully fun.) Back when .NET made its debut, an amusing quip from the Linux crowd was to refer to C# as Db (D-flat), which is the same note as C#, but has different connotations. Two MS Research languages also bear musically-related names: Polyphonic C# and F#.

From C#/.NET History Lesson.

link|flag

Your Answer

Get an OpenID
or

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