Hakkar
Hakkar

Reputation: 2441

What language is Visual Studio 2010/2012 written in?

Visual Studio has historically been C++, but is there any C# or VB.NET code in versions 2010 and 2012?

Does it require the CLR to function?

Thanks

Upvotes: 33

Views: 30479

Answers (3)

Icemanind
Icemanind

Reputation: 48696

The Programming Languages Beacon website contains a nice table of a whole bunch of different products and the languages they are written in. According to this site, Visual Studio is, indeed, written in C# and C++.

Upvotes: 4

SUpreti
SUpreti

Reputation: 105

Looks like Output window is written in C/C++. When I tried:

string str="The quick brown fox \0 jumps over the lazy dog.";
System.Diagnostics.Debug.WriteLine(str);

The output window for "Debug" shows: "The quick brown fox".

Upvotes: 8

David
David

Reputation: 3821

C++ and C#

Look at the sidebar in this link

Upvotes: 25

Related Questions