Obtain type information using the Type.GetType method(Case sensitive, return null if not found). : Type : Reflection C# Examples


C# Examples » Reflection » Type »

 

Obtain type information using the Type.GetType method(Case sensitive, return null if not found).









    
using  System;
using  System.Text;

class  MainClass
{
        public  static  void  Main()
        {
                Type  t2  =  Type.GetType("System.String");
        }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Reflection
» Type