The full name of the Array type

image_pdfimage_print
   
 

using System;
class TestFullName 
{
    public static void Main() {
        Type t = typeof(Array);
        Console.WriteLine("The full name of the Array type is {0}.", t.FullName);
    }
} 

   
     


This entry was posted in Reflection. Bookmark the permalink.