System.Reflection.Emit.TypeBuilder.GetMethod C# (CSharp) Method

GetMethod() public static method

public static GetMethod ( System type, System method ) : System.Reflection.MethodInfo
type System
method System
return System.Reflection.MethodInfo
        public static System.Reflection.MethodInfo GetMethod(System.Type type, System.Reflection.MethodInfo method) { throw null; }
        public override bool IsAssignableFrom(System.Reflection.TypeInfo typeInfo) { throw null; }

Usage Example

 public override MethodInfo GetRemoveMethod(bool nonPublic)
 {
     if (this.evt.remove_method == null || (!nonPublic && !this.evt.remove_method.IsPublic))
     {
         return(null);
     }
     return(TypeBuilder.GetMethod(this.instantiation, this.evt.remove_method));
 }
All Usage Examples Of System.Reflection.Emit.TypeBuilder::GetMethod