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?
发布评论
评论(3)
我知道的最接近的是 ECMA-335 这是CLI 规范。但是,您应该意识到 ECMA 内存模型明显弱于 .NET 内存模型。 (其中 .NET 是 Microsoft 对 CLI 的实现。)
不过,我怀疑 CLI 是否特别提到了 ThreadStart - 它只是另一个委托。您对它的什么特别感兴趣?
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?不确定规范,但如果您想查看实现细节,您可能需要使用 Red-gate反射器
Not sure about the Spec but if you want to look at implementation details you may want to use Red-gate Reflector
您正在寻找公共语言基础结构规范吗?
该页面包含许多链接,例如 c# 语言规范 和 CLI
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