Mega Code Archive

 
Categories / C# / Reflection
 

The full name of the Array type

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);     } }