[Gtk-sharp-list] classes

Duncan Mak duncan@ximian.com
30 Apr 2003 13:16:35 -0400


On Wed, 2003-04-30 at 12:55, D d wrote:
> How can i find information on the following GTK# classes
> 
>   using Gtk;
>   using GtkSharp;
> 
> 

These are not classes, these are namespaces. The 'using' statement
shortens the naming of class names. Instead of GtkButton in C, it's
Gtk.Button in C# (Gtk being the namespace), and with a using statement,
you can further abbreviate it into simply 'Button'.

Saying 'using Gtk' is the same as saying 'using System'. System is not a
class, so of course Gtk is also not a class.

Duncan.