// $Id: matrix.csharp,v 1.0 2002/05/09 12:45:00 dada Exp $ // http://dada.perl.it/shootout/ using System; class App { static int SIZE = 30; public static int[,] mkmatrix (int rows, int cols) { int count = 1; int[,] m = new int[rows,cols]; for (int i=0; i