How does extern work in C#?
Asked Answered
F

4

78

Whenever I look deeply enough into reflector I bump into extern methods with no source. I read the msdn documentation at http://msdn.microsoft.com/en-us/library/e59b22c5(v=vs.80).aspx. What I got from that article is that methods with the extern modifier have to be injected. I interpreted this to mean it works something like an abstract factory pattern. I also noticed that I've never seen a non-static extern method. Is static declaration a requirement (I could see how this would make sense)? I'm still guessing here and I'm not sure how it actually works. It seems to me like the compiler must recognize certain attributes that mitigate processing, but I don't know what the attributes are other than ones I've come across like MethodImplAttribute and DllImportAttribute from the MSDN example. How does someone leverage the extern attribute? It said that in many instances this can increase performance. Also, how would I go about looking into the source of extern methods like Object.InternalGetEquals()?

Forb answered 24/2, 2011 at 21:30 Comment(2)
MemberwiseClone() method on System.Object class in .Net is extern but NOT static.Intro
When an extern method includes a DllImport attribute, then the method declaration must also include a static modifier.Intro
H
121

Consider reading section 10.6.7 of the C# specification, which answers many of your questions. I reproduce part of it here for your convenience:


When a method declaration includes an extern modifier, that method is said to be an external method. External methods are implemented externally, typically using a language other than C#. Because an external method declaration provides no actual implementation, the method-body of an external method simply consists of a semicolon. An external method may not be generic. The extern modifier is typically used in conjunction with a DllImport attribute, allowing external methods to be implemented by DLLs (Dynamic Link Libraries). The execution environment may support other mechanisms whereby implementations of external methods can be provided. When an external method includes a DllImport attribute, the method declaration must also include a static modifier.


How does someone leverage the extern attribute?

  • Write your code in the unmanaged language of your choice.
  • Compile it into a DLL, exporting the entry point of your code.
  • Make an interop library that defines the method as an extern method in the given DLL.
  • Call it from C#.
  • Profit!

How would I go about looking into the source of extern methods like Object.InternalGetEquals()?

Go to https://github.com/dotnet/coreclr/tree/master/src/vm

Heavily answered 24/2, 2011 at 21:42 Comment(9)
The SSLI20 source code is still a pretty accurate copy of the internal methods for mere mortals like me. Good enough to answer a bunch of CLR questions anyway. Look at clr/src/vm/ecall.cpp for the mapping from the framework name to the C++ function. Download is here: microsoft.com/downloads/en/…Vaish
@Hans: please note that after looking at SSCLI you're not allowed to contribute to Mono project.Flirtatious
Hmm, you'd better stay away from answers by Microsoft employees too.Vaish
@Eric, why does an external method may not be generic? I've noticed that the C# compiler compiles generic external methods just fine. I'm working on a post-compiler that inserts methods in classes. So I was thinking about using extern as a placeholder for the post-compiler to insert code. I don't think extern was designed only to be used with [DllImport], was it?Searby
@Jordão: If the method is external to the runtime then how does the jitter know how to compile the constructed method?Heavily
@Eric: The post-compiler runs before the jitter, just after compilation. It's not a runtime API, it just changes the generated assembly.Searby
@Eric: to me it's not external to the runtime, but external to the C# compiler. Isn't that what it's supposed to mean?Searby
@Jordão: Read the bit of the spec I quoted again. External methods are methods that are implemented externally. The spec does not say "external methods are a general-purpose language extension point for post-compilers". It says that external methods are a way to indicate to the compiler that the implementation of this method is somewhere outside of the managed system.Heavily
@Eric: thanks for the explanation. I see what's their purpose now. I just wanted to interpret it a little more broadly to encompass my scenario, not to replace the original scenario with mine. Kind of like how people abuse the using statement.Searby
F
38

Methods marked extern with [DllImport] attribute are usually calls to C libraries. This feature is useful for calling WinAPI or legacy code.

This is example from MSDN:

using System;
using System.Runtime.InteropServices;
class MainClass 
{
   [DllImport("User32.dll")]
   public static extern int MessageBox(int h, string m, string c, int type);

   static int Main() 
   {
      string myString; 
      Console.Write("Enter your message: ");
      myString = Console.ReadLine();
      return MessageBox(0, myString, "My Message Box", 0);
   }
}

It calls MessageBox which is defined inside Windows user32.dll library. Runtime does all the heavy work for you here, although sometimes you'd need to manually manage memory. If you get the signature wrong, your program may fail on the call, you may introduce a leak or the method might return something completely different, so be careful! I find pinvoke.net a great instrument to correct signatures for different APIs.

Some extern methods inside .NET Framework that don't have have [DllImport] attribute but are decorated with [MethodImpl (MethodImplOptions.InternalCall)] attribute are usually the ones implemented in CLR itself, which is written in C as well. Some of such methods just can't be implemented in C# because they manage runtime itself, and some are implemented in C because their performance is critical and C is faster.

This is what MSDN says about them:

Specifies an internal call. An internal call is a call to a method that is implemented within the common language runtime itself.

As for looking at the actual implementation code, I doubt you'll be able to get it from Microsoft but there are some cool alternative implementations of CLR around so be sure to check them out.

Flirtatious answered 24/2, 2011 at 21:39 Comment(1)
One thing to keep in mind, often when working with extern and DLLImport you will often find references to "unsafe" as well. Keep in mind this is allowing you to use such things as actual pointers and when writing your own extern methods you must be very careful to not incur any memory leaks.Caye
M
3

extern is with platform invocation (pinvoke) to facilitate managed assemblies calling into unmanaged code. The extern keyword informs the compiler that it will need to generate the correct code for allow for the correct data marshaling.

Mobster answered 24/2, 2011 at 21:36 Comment(0)
P
3

We use " extern " modifier in method declaration. It is used to indicate that the method is implemented externally. A common use of the " extern " modifier is with the DllImport attribute. Non-C# function calls are managed with this attribute. If you are using extern modifier then you have to include following namespace:

using System.Runtime.InteropServices;

Syntax is somthing like:

[DllImport("User32.dll")] public static extern int MessageBox(int h, string m, string c, int type);

Popple answered 5/10, 2015 at 11:59 Comment(1)
Does Dan Abramov said anything different ?Buddhology

© 2022 - 2024 — McMap. All rights reserved.