[Mono-list] Missing Types from corlib

Nick Drochak ndrochak@gol.com
Fri, 4 Jan 2002 23:46:38 +0900


> The idea would be to use it like this:
> 
> [MonoAuthor ("Guarav")]
> class MyClass {
> 	[MonoTODO]
> 	void printf ()
> 	{
> 		throw new exception ("unimplemented");
> 	}
> }
> 

I was thinking of something just a bit more, like:

 [MonoMaintainer ("Miguel", "miguel@ximian.com")]
 [MonoAuthor ("Guarav")]
 class MyClass {
 	[MonoTODO("Make it do something")]
 	void printf ()
 	{
 		throw new exception ("unimplemented");
 	}
 }