У меня есть methodInfo из метода mymethod класса Example.
internal class Example
{
public static void mymethod(string str1, ref string str2, out string str3)
{
....
MethodInfo mm = typeof(Example).GetMethod("mymethod");
Как сделать атрибут (например, ABCAttribute) мм, чтобы
mm.IsDefined(typeof(ABCAttribute), true)
стало истинным?