[Mono-docs-list] MonoDoc type lookups / helpsource improvement

Miguel de Icaza miguel@ximian.com
01 Jun 2003 13:57:56 -0400


Hello!

> 	If the assembly of the type is available to MonoDoc, it loads the 
> assembly.  If the type doesn't exist, or if it has MonoTODO attributes, 
> or if its members have MonoTODO attributes, it presents that information 
> on the documentation page.

There is a little problem with the code: the MonoTODO attribute is an
internal attribute, so it is not accessible outside of corlib.

The code probably has to be changed into checking for Attributes, and
then comparing the name of it to MonoTODO.  

Then you can do a MethodInfo.Invoke () to dynamically call into the
MonoTODO attribute, as you cant really reference it (at least CVS MCS
wont let you do it).

Miguel