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));
 }