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