[Gtk-sharp-list] ToggleButton doc update

Miguel de Icaza miguel@ximian.com
03 May 2003 19:25:58 -0400


Hello,

> 1. Are examples in VB.net wanted as well, or should we concentrate on C#
> for now and add VB later?
> >From what miguel has told me the example are in C# mainly because VB
> support is still very unstable

That is one reason.  The other reason is that it would be best to focus
on do one job very well, instead of two partially done. 

> 2. Does the current version of monodoc handle all the <see cref=""/> and
> <see langword=""/> elements?
> The last time I checked it handled right the class type right only.
> Methods, propierties, fields and events are not redirected right but the
> source is changed almost daily by miguel so this can change quick

<see langword=.../> actually just changes the rendering based on the
language.  For C# it would render bool, true, false, null;  For C++ it
would render boolean, TRUE, FALSE, NULL.  For Scheme it would probably
use XXX, #t, #f, nil.

So it is a simple translator.

The <see cref> works for most things, but is missing support for
methods.  It is on my TODO list, and would love to fix those.

Miguel