csharp type from string

Code Example - csharp type from string

                
                        Type type = Type.GetType("Namespace.MyClass, MyAssembly");
                    
                
 

csharp type of string

                        
                                //Exampled String
string str = "MyString";

//Getting Type of "MyString"
string typeOfStr = str.GetType().ToString();
//Show our Type
Console.WriteLine(typeOfStr);

// Or in short:
Console.WriteLine(str.GetType());
                            
                        
 

Related code examples