fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. byte[][] ColorsPreset = new byte[][]
  8. {
  9. new byte[] { 13, 155, 150, 255, 100, 255}, // red
  10. new byte[] { 80, 130, 150, 255, 100, 255}, // blue
  11. new byte[] { 36, 86, 150, 255, 100, 255}, // green
  12. new byte[] { 13, 39, 150, 255, 100, 255}, // yellow
  13. new byte[] { 125, 159, 150, 255, 100, 255} // purple
  14. };
  15.  
  16. Console.WriteLine(ColorsPreset[0][1]);
  17. }
  18. }
Success #stdin #stdout 0.02s 16048KB
stdin
Standard input is empty
stdout
155