0
我從Example class的mymethod方法中有一個methodInfo。使用C#設置methodInfo.IsDefined()爲true#
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)
爲真?