Are generics parameterized IL or part of CLS ?
feedback
|
|
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. | |||||
feedback
|
|
To extend Barry's answer, you can see int? x = 5; in IL:
| |||
|
feedback
|
|
| |||
|
feedback
|