// Methods
 public PropNameAttribute(RS.FieldNames key)
 {
     this._Key             = key;
     base.DisplayNameValue = this.GetLocalizedString();
 }
 // Methods
 public PropDescAttribute(RS.FieldNames key)
 {
     this._Key             = key;
     base.DescriptionValue = GetLocalizedString();
 }
 // Methods
 public FieldCategoryAttribute(RS.FieldNames keyType)
     : base(keyType.ToString())
 {
     this._Key = keyType;
 }