up vote 7 down vote favorite
2
share [g+] share [fb]

I've seen in it in the primary CLR dll, mscorlib.dll, and I've seen in it in this CLR Profiling API interface, ICorProfilerCallback2.

Just curious: what does the word 'Cor' stand for?

link|improve this question

70% accept rate
feedback

1 Answer

up vote 12 down vote accepted

"Common Object Runtime"

For more, see:

cor: Before .NET was chosen as the name, this new platform was a successor to COM so it was codenamed COM 3.0 and then the name chosen was… Common Object Runtime (cor) and that is where mscorlib derives its name from (and that stuck regardless of the fact that .NET was the final name)!

EDIT: Here's an interesting addendum from Jeffrey Richter's book

When Microsoft first started working on the .NET Framework, MSCorLib.dll was an acronym for Microsoft Common Object Runtime Library. Once ECMA started to standardize the CLR and parts of the FCL, MSCorLib.dll officially became the acronym for Multilanguage Standard Common Object Runtime Library.

link|improve this answer
Present day Google hits make me doubt the legitimacy of that MS thing :) – f100 Jul 14 '09 at 3:56
1  
Charles Petzold says the same thing in his book, available online. Search for "mscor": charlespetzold.com/dotnet/DotNetBookZero11.pdf – ars Jul 14 '09 at 4:00
I should give less reverence to quick Google searches! – f100 Jul 14 '09 at 4:25
Fabulously interesting information. Thanks a lot. – Frederick Jul 14 '09 at 7:05
feedback

Your Answer

 
or
required, but never shown

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