Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
46 views

Is this Comparer class from SSCLI library code ThreadSafe?

public abstract class Comparer<T> : IComparer, IComparer<T> { static Comparer<T> defaultComparer; public static Comparer<T> Default { get { ...
3
votes
2answers
336 views

Shared Source CLI 4.0?

Microsoft released the Shared Source Common Language Infrastructure (the code previously known as ROTOR) some years ago basically as a reference implementation of the .NET runtime. While the actual ...
2
votes
1answer
22 views

Where can I get the native implementation for a specific IL instruction?

I want to take a look at the implementation of a certain IL instruction, for example, box, in SSCLI, where can I get it in the SSCLI 2.0 source?
2
votes
1answer
130 views

SSCLI (Rotor) for the v4.0 clr?

Does anyone know if there is (or will be) an SSCLI release for the v4.0 runtime?
2
votes
2answers
78 views

Is there any good books about SSCLI? [closed]

More and more I realized that without jumping into the code details, I cannot really understand the how CLR works. So could you recommend some good books on SSCLI (Shared Source CLI)? Many thanks.
2
votes
2answers
647 views

SSCLI for .Net Framework 3.5

Is there a SSCLI equivalent for .Net Framework 3.5? Something that can be debugged and stepped through.
1
vote
2answers
113 views

Does CLR internally spawns a thread to respond to timer events?

Hans and I had small discussion recently about the subject and I'm curious how it is really implemented. See initial talking in the comments here: Are c# timers naturally multithreaded?
1
vote
3answers
338 views

What is the difference between SSCLI 2.0 (ROTOR) and .NET?

Is there a large difference between the SSCLI 2.0 and .NET, I know that Microsoft wouldn't release their garbage collector or JIT compiler and simpler implementations are used, but as far as the rest ...