Determine if a method is 'extern' using re

2019-05-10 12:55发布

问题:

How do I determine if a method is extern , using reflection?

Sample method:

var mEnter = typeof(System.Threading.Monitor).GetMethod("Exit", BindingFlags.Static | BindingFlags.Public);

回答1:

var isExtern = (mEnter.MethodImplementationFlags
                    & MethodImplAttributes.InternalCall) != 0;


回答2:

I don't know is any direct way to figure out but I can show a trick that I used Suppose we have a class contains extern method

class MyClass
{
    [DllImport("kernel32.dll")]
    public static extern bool Beep(int ferequency, int duration);
    public static void gr()
    {
    }
    public void GG()
    {
    }
}

we can get check extern method by writting this code

 var t = typeof(MyClass);
        var l = t.GetMethods();
        foreach (var item in l)
        {
            if (item.GetMethodBody() == null && item.IsStatic)
            {
                // Method is Extern
            }
        }


标签: c# reflection