bug: "private virtual" in the code-generator
Posted: Mon 27 Feb 2012 18:09
The code-generator outputs this for a private collection:
There is no such thing as "private virtual" - a private property should be declared as "private" and not "virtual".
Code: Select all
private virtual Iesi.Collections.Generic.ISet Items
{
get
{
return this._Items;
}
set
{
this._Items = value;
}
}