示例#1
0
 public static Method <T> Method <T>(this IMembers members, string methodName) where T : Delegate =>
 new Method <T>(members.Method(typeof(T), methodName), methodFactory);
 public void ReturnsSingleMethod()
 {
     Assert.Same(selected, members.Method());
     Assert.Same(methods, selection);
 }