[Gtk-sharp-list] binding an event to GnomeDb.Grid in mono and using GList

Miguel de Icaza miguel@ximian.com
Sun, 30 Nov 2003 07:24:23 -0500


Hello,

> Also, this gives a systax error:
> 
> int i;
> ...
> foreach( i in row_list ) {
> 	Console.WriteLine( i );
> }

You need to use:

	foreach (int i in row_list) {
	}

Miguel