The typeName parameter is a combination of the Assembly and Type names : Type : Reflection C# Source Code


Custom Search

C# Source Code » Reflection » Type »

 

The typeName parameter is a combination of the Assembly and Type names








    
 

using System;
using System.Reflection;

class ReflectOnlyType {
    static void Main() {
        Type zType = Type.ReflectionOnlyGetType("ReflectOnlyType", false, false);
        Console.WriteLine(zType.Name);
    }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Reflection
» Type