[Mono-list] "Not supported"

Miguel de Icaza miguel@ximian.com
19 Apr 2002 13:03:37 -0400


> (a)
> 	[MonoTODO]
>         public int Count
>         {
> 		get { throw new NotImplementedException (); }
>         }
> 
> (b)
> 	[MonoTODO]
>         public int Count
>         {
> 		// get { throw new NotImplementedException (); }
>         }
> 
> (c)
> 	[MonoTODO]
>         //public int Count
>         //{
> 	//	get { throw new NotImplementedException (); }
>         //}

Given the input from Piers and Nick, I think:

	// [MonoTODO]
	// public int Count {
	// 	get {
	//		throw new NotImplementedException (); 
	//	}
	// }

btw, please make sure your stubs/templates match the coding standards
for Mono.

Miguel