Im trying to call a jagged array method but Im missing the right syntax this is my method
public static int[] CountAvrge(int[][] a)
{
}
now I want to call my CountAvrge method from the static void Main(string[] args)
something like this:
CountAvrge(new int[][] { 1, 2, 3 } {4, 5, 6});