We know that C# uses unmanaged code like P/Invoke or CLR implemented code like InternalCall. What I want to know is does mono it self implements a complete CLR or just some unmanaged code or nothing? I can use .Net Reflactor or ILSpy to view managed assembly, but some times due to performance issues I need to know how does CLR implement some unmanaged code. Like: How does System.String.get_lenght() do? Any one can answer questions above or some infomation about this is welcomed. Thanks.

link|improve this question

4  
It implements the CLR. Looking at the code is not an issue, Mono is Open Source. – Hans Passant Feb 17 at 1:47
@Hans : I just got the mono code. Is it possible to ask which directory should I look into? – chenwq Feb 17 at 1:57
1  
Yes, reflector works on mono assemblies, they are the same binary format ( which is the whole idea really ). – IanNorton Feb 18 at 9:22
Mono's System.String is implemented here: github.com/mono/mono/blob/master/mcs/class/corlib/System/… - the Length property is not an icall. – jstedfast Feb 18 at 22:54
feedback

1 Answer

up vote 3 down vote accepted

Yes, mono does implement the whole CLR, so if you looked at its code, you would find the implementation of methods like String.get_Length().

But Mono is a different implementation than the Microsoft CLR. What that means is if you look up the code for String.get_lenght() in Mono then the Microsoft CLR could have completely different way of doing the same thing.

Another option is looking at Shared Source Common Language Infrastructure. It's from Microsoft and it's probably more similar to their implementation of CLR than Mono, but it still isn't the same. And the newest available version corresponds to .Net 2.0.

link|improve this answer
I know that mono is not Microsoft. But a reference is way much better than nothing. I'm searching the mono code, still looking for it. – chenwq Feb 17 at 2:01
Thanks to all people above. – chenwq Feb 17 at 2:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.