[Mono-list] portable documentation on the FCL?

Duncan Mak duncan@ximian.com
Wed, 13 Aug 2003 08:29:56 -0400


On Wed, 2003-08-13 at 08:11, Toby DiPasquale wrote:
> Hi all,
> 
> I know this is way off-topic for the list, but I am house-sitting for my 
> parents currently and don't have a 'Net connection at home. I'm trying to work 
> on my C# project (using Mono, of course ;) but find that I need an FCL 
> reference to complete some tasks. Does anyone know where I can get a 
> downloadable reference to the .NET FCL? TIA :)

I have also ran into this problem before. Most of the time, my solution
is to just read the Mono source code. I know it's kinda lame, but it is
one way to find out what methods are available for the classes.

Lately, I've also been using Monodoc. I use it mostly as a Gtk#
reference and it works pretty well. On top of Gtk# documentation, we
distribute files for the FCL (BCL?) as well, based on the ECMA
documentation (a subset of the whole MS set), along with stubs of the
Types and methods that were in the MS set but not the ECMA set. So we
should have all the type/method listing that MS has in their 1.0
documentation.

The FCL documentation in monodoc should be pretty useful and handy if
you're just interested in finding out the methods and properties
available for a particular class; if you want more in depth
explanations, unless what you are looking for is covered by the ECMA
docs, your best bet is reading the source for now.

However, we always welcome contributions to documentation... ;-)

Duncan.