我有一个来自 Example 类的 mymethod 方法的 methodInfo。
internal class Example
{
public static void mymethod(string str1, ref string str2, out string str3)
{
....
MethodInfo mm = typeof(Example).GetMethod("mymethod");
如何制作 mm 的属性(例如 ABCAttribute),以便
mm.IsDefined(typeof(ABCAttribute), true)
变成真的?