Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Many methods in the .Net library are implemented in native code. Those that come from the framework itself are marked with [MethodImpl(MethodImplOptions.InternalCall)]. Those that come from some unmanaged DLL are marked with [DllImport] (e.g. [DllImport("kernel32.dll")]). So far nothing unusual.

But while writing answer for another question, I discovered there are many methods marked with [DllImport("QCall")]. They seem to be internal implementation of .Net (e.g. GC._Collect()).

My question is: What exactly does [DllImport("QCall")] mean? What is the difference between [DllImport("QCall")] and [MethodImpl(MethodImplOptions.InternalCall)]?

share|improve this question
It's a special internal call; I'm trying to find details. – SLaks Feb 28 '12 at 23:41
I remember reading awhile back that "QCall" is part of clr.dll. I, however, don't know much beyond that. +1 for an excellent question. – ahawker Feb 29 '12 at 1:36
6  
It is a .NET 4 specific feature. You can get a wee bit of insight from the V4 Reference Source, look at the source code for System.Runtime.CompilerServices.Jithelpers.cs. The string appears twice in clr.dll, as __IsQCall and as a inline literal. This strongly resembles an extension mechanism beyond MethodImplOptions.InternalCall, proving it is difficult without CLR source code. – Hans Passant Feb 29 '12 at 1:51

1 Answer

up vote 18 down vote accepted

I asked some people in the .Net team about this.

QCalls are calls to native methods within the CLR runtime. They behave like other [DllImport]s, but they're faster because they make specific (undocumented) assumptions about what the native methods do, so they can skip various marshalling and GC and exception checks.

InternalCall is different; it's for calls for special reflection-style things which are generated at runtime (this wasn't very clear).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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