.NET CLR specifications [closed]
开发者_StackOverflow中文版
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this questionWhere can I find the spec of CLR ? For example, I want to look at how is implemented in memory the object "ThreadStart".
Thanks.
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?
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
精彩评论