up vote 3 down vote favorite
share [g+] share [fb]

Are generics parameterized IL or part of CLS ?

link|improve this question

I note that you're asking an "or" question which is not a choice between alternatives. IL is an standardized code format for a specified virtual machine. CLS is a specification for what spec-compliant programming languages are required to produce and consume. I'm not sure what you believe they have to do with each other. Can you explain your question better? – Eric Lippert Aug 24 '09 at 19:53
feedback

3 Answers

up vote 5 down vote accepted

They are part of the CLI and are detailed in the standard (ECMA 335). The IL uses special instructions and formats that directly encode various generic operations. So, generic code is directly compiled to CIL, which itself uses type variables.

link|improve this answer
And the fact that generics wern't in 1.1 but were in the spec means that 1.1 should have been called 0.1. – quillbreaker Aug 24 '09 at 18:28
Well many Microsoft's products are like that, ASP.NET MVC is another example. – Yuriy Faktorovich Aug 24 '09 at 18:31
feedback

To extend Barry's answer, you can see int? x = 5; in IL:

IL_0001:  ldloca.s    00 
IL_0003:  ldc.i4.5    
IL_0004:  call        System.Nullable<System.Int32>..ctor
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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