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)
真になる?