System.Reflection.MonoMethodInfo.GetMethodImplementationFlags C# (CSharp) Метод

GetMethodImplementationFlags() статический приватный Метод

static private GetMethodImplementationFlags ( IntPtr handle ) : MethodImplAttributes
handle IntPtr
Результат MethodImplAttributes
		internal static MethodImplAttributes GetMethodImplementationFlags (IntPtr handle)
		{
			return GetMethodInfo (handle).iattrs;
		}

Usage Example

Пример #1
0
 public override MethodImplAttributes GetMethodImplementationFlags()
 {
     return(MonoMethodInfo.GetMethodImplementationFlags(mhandle));
 }