Ejemplo n.º 1
0
 public PublicMemberInfo(PropertyInfo info)
 {
     this._propertyInfo = info;
     this.type          = this._propertyInfo.PropertyType;
     this.name          = this._propertyInfo.Name;
     this.attributes    = PublicMemberInfo.getAttributes(this._propertyInfo.GetCustomAttributes(false));
 }
Ejemplo n.º 2
0
 public PublicMemberInfo(FieldInfo info)
 {
     this._fieldInfo = info;
     this.type       = this._fieldInfo.FieldType;
     this.name       = this._fieldInfo.Name;
     this.attributes = PublicMemberInfo.getAttributes(this._fieldInfo.GetCustomAttributes(false));
 }