[Mono-list] MonoTODO causes CS0647: Error emitting 'System.MonoTODOAttribute'

Duncan Mak duncan@ximian.com
24 Apr 2002 11:00:19 -0400


On Wed, 2002-04-24 at 07:23, Jaak Simm wrote:
> 
> >>> Control.cs: [442 - 446]
>    /// --- ControlCollection.IList properties ---
>    [MonoTODO]
>    bool IList.IsFixedSize {
>     get { throw new NotImplementedException (); }
>    }
> 

I think if you put the MonoTODO attribute inside the get block, it'll
work.

bool IList.IsFixedSize {
	[MonoTODO] get { throw new Exception (); }
}

Duncan.