fork download
  1. using System;
  2.  
  3. public class Abc {}
  4.  
  5. public class Test
  6. {
  7. public static void Main()
  8. {
  9. Abc [] a = new Abc[1];
  10. Console.WriteLine(a.GetType()); // -> Abc[]
  11. Console.WriteLine(a.GetType().BaseType); // -> System.Array
  12. Console.WriteLine(a.GetType().BaseType.BaseType); // -> System.Object
  13. }
  14. }
Success #stdin #stdout 0.03s 23872KB
stdin
Standard input is empty
stdout
Abc[]
System.Array
System.Object