cs0196.cs 172 B

1234567891011
  1. // cs0196.cs: pointers must be indexed by a single value
  2. // line: 8
  3. using System;
  4. unsafe class ZZ {
  5. static void Main () {
  6. int *p = null;
  7. if (p [10,4] == 4)
  8. ;
  9. }
  10. }