|
| Private field cannot be default property |
 |
Tue, 5 Sep 2006 22:40:44 +0000 |
CommunityServer.Blogs/Controls/BaseControls/WeblogBaseTemplatedWebControl.cs
Line 58 - 65:
[DefaultValue(true)]
privatebool enableTitle = true;
publicbool EnableTitle
{
get { return enableTitle; }
set { enableTitle = value; }
}
Of course, the attribute should be moved to the property.
|
| Post Reply
|
|
|
|
|
|
|
|
|
|