コード例 #1
0
 public DecoratorAttribute(DecoratorUsage usage)
 {
     this.Usage = usage;
     this.MethodName = null;
 }
コード例 #2
0
 public DecoratorAttribute(DecoratorUsage usage, string methodName)
 {
     this.Usage = usage;
     this.MethodName = methodName;
 }