vote up 0 vote down star

Are generics parameterized IL or part of CLS ?

flag

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 at 19:53

3 Answers

vote up 4 vote down check

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|flag
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 at 18:28
Well many Microsoft's products are like that, ASP.NET MVC is another example. – Yuriy Faktorovich Aug 24 at 18:31
vote up 1 vote down

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|flag
vote up 0 vote down

this might help http://msdn.microsoft.com/en-us/library/aa479859.aspx#fundamentals%5Ftopic29

link|flag

Your Answer

Get an OpenID
or

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