Obtain type information using the Type.GetType method(Case insensitive, throw TypeLoadException if not found) : Type : Reflection C# Examples


C# Examples » Reflection » Type »

 

Obtain type information using the Type.GetType method(Case insensitive, throw TypeLoadException if not found)









    
using  System;
using  System.Text;

class  MainClass
{
        public  static  void  Main()
        {
                Type  t4  =  Type.GetType("system.string",  true,  true);
        }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Reflection
» Type