Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.NET CLR specifications [closed]

Where can I find the spec of CLR ? For example, I want to look at how is implemented in memory the object "ThreadStart".

Thanks.

like image 786
Thomas Avatar asked Mar 29 '10 08:03

Thomas


People also ask

Does .NET 4.8 include 4.7 2?

if you have 4.8 then you have 4.7. 2 automatically.

Is .NET core being discontinued?

Note: The . NET 5.0 SDK versions will continue to be supported in VS 16.11 until December of 2022 when . NET Core 3.1 goes out of support so that . NET Core 3.1 customers can continue to use 16.11 to developer their applications.

Is .NET discontinued?

NET's product cycle is coming to a close. While it's not in the immediate future, it certainly has already been hit with an end date, with v. 4.7 ending in 2022.” In 2019, Microsoft announced that the .

Will .NET Framework be discontinued?

. NET Framework 4.5. 2, 4.6, and 4.61 retired on April 26, 2022.


1 Answers

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?

like image 157
Jon Skeet Avatar answered Sep 20 '22 10:09

Jon Skeet