Questions tagged [sscli]
11 questions
8
votes
3 answers
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 .NET runtime (mscorlib, mscoree, mscorjit, etc.)…

Paul Alexander
- 31,970
- 14
- 96
- 151
6
votes
1 answer
SSCLI (Rotor) for the v4.0 clr?
Does anyone know if there is (or will be) an SSCLI release for the v4.0 runtime?

codekaizen
- 26,990
- 7
- 84
- 140
3
votes
2 answers
Is this Comparer class from SSCLI library code ThreadSafe?
public abstract class Comparer : IComparer, IComparer
{
static Comparer defaultComparer;
public static Comparer Default {
get {
Comparer comparer = defaultComparer;
…

drr
- 91
- 1
- 4
3
votes
1 answer
SSCLI and VB.NET
I am interested to learn more about how the .NET framework works internally. I have downloaded Reflector and also SSCLI. The following link says: "The Shared Source CLI is a compressed archive of the source code to a working implementation of the…

w0051977
- 15,099
- 32
- 152
- 329
2
votes
1 answer
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?

Thomson
- 20,586
- 28
- 90
- 134
2
votes
2 answers
Is there any good books about SSCLI?
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.

smwikipedia
- 61,609
- 92
- 309
- 482
2
votes
2 answers
SSCLI for .Net Framework 3.5
Is there a SSCLI equivalent for .Net Framework 3.5?
Something that can be debugged and stepped through.

SharePoint Newbie
- 5,974
- 12
- 62
- 103
2
votes
3 answers
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 is concerned is there much difference?

Euclid
- 880
- 10
- 24
1
vote
2 answers
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?

Ivan Danilov
- 14,287
- 6
- 48
- 66
0
votes
0 answers
Why Rotor use MSCOREE?
I Built SSCLI 2.0 From Source. Then I Was Wrote A Simple C# Program.
Then I build Program With CSS.exe Inside The ROTOR Output Folder.
When I Dump Imports From this Executable with dump bin I Still Seeing _CoreEXEMain From mscoree.
and if I run…

Alireza Khalesi
- 171
- 9
0
votes
0 answers
Rotor SSCLI 2.0 - Error in building PAL
I am trying to build Rotor SSCLI 2.0 under Windows 8.1 x64, VS2013 (including MFC). Source code is located at C:\sscli20.
Instead of env.bat I wrote PowerShell script that sets environment variables and by chance may appear to be correct:
# Setting…

user2341923
- 4,537
- 6
- 30
- 44