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);
var isExtern = (mEnter.MethodImplementationFlags
& MethodImplAttributes.InternalCall) != 0;
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
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With