When having property with an attribute with parameter of type array, the regionerate breaks property in two parts.
Example:
- Code: Select all
[Size(6)]
[Persistent("cat_code")]
[ValidValues(new object[] { "PHYADR", "ELCADR", "NOS" })]
public string CategoryCode
{
get { return this.fcat_code; }
set { SetPropertyValue<string>("CategoryCode", ref this.fcat_code, value); }
}
is converted to:
- Code: Select all
public string CategoryCode
{
get { return this.fcat_code; }
set { SetPropertyValue<string>("CategoryCode", ref this.fcat_code, value); }
}
[Size(6)]
[Persistent("cat_code")]
[ValidValues(new object[] { "PHYADR", "ELCADR", "NOS" })]
Regards,
Zvonko
