コード例 #1
0
 public DynamicProxyProperty(PropertyInfo info, DynamicProperty implementation)
     : base(info.Name, info.PropertyType, !info.CanWrite)
 {
     this.baseProperty   = info;
     this.implementation = implementation;
 }
コード例 #2
0
 public DynamicProxyEvent(EventInfo info, DynamicProperty implementation) : base(info.Name, info.EventHandlerType)
 {
     this.baseEvent      = info;
     this.implementation = implementation;
 }