Beispiel #1
0
 /// <summary>
 /// 表示属性
 /// </summary>
 /// <param name="property">属性</param>
 /// <exception cref="ArgumentNullException"></exception>
 public Property(PropertyInfo property)
 {
     this.property = property;
     this.Getter   = new PropertyGetter(property);
     this.Setter   = new PropertySetter(property);
 }