Hi all,
Where can I find the spec of CLR ? For example, I want to look at how is implemented in memory the object "ThreadStart".
Thanks.
Hi all,
Where can I find the spec of CLR ? For example, I want to look at how is implemented in memory the object "ThreadStart".
Thanks.
Not sure about the Spec but if you want to look at implementation details you may want to use Red-gate Reflector
is the common language infrastructure specification what you are looking for?
The page contains many links to things like the c# language specification and the CLI
The closest I'm aware of is ECMA-335 which is the CLI specification. However, you should be aware that the ECMA memory model is significantly weaker than the .NET one. (Where .NET is Microsoft's implementation of the CLI.)
I doubt that the CLI specifically mentions ThreadStart
though - it's just another delegate. What are you particularly interested in about it?