fork(1) download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. List<float[,]> nodes = new List<float[,]>();
  9. nodes.Add(new float[2,2]{{1,2},{3,4}});
  10. float foo = nodes[0][0,0];
  11. Console.WriteLine(foo);
  12. }
  13. }
Success #stdin #stdout 0.03s 36960KB
stdin
Standard input is empty
stdout
1