Horje
create instance of class given class name string c# Code Example
create instance of class given class name string c#
public object GetInstance(string strFullyQualifiedName)
{         
     Type t = Type.GetType(strFullyQualifiedName); 
     return  Activator.CreateInstance(t);         
}




Csharp

Related
System.Drawing get from url Code Example System.Drawing get from url Code Example
c# how to fill a datatable Code Example c# how to fill a datatable Code Example
how to make button in asp.net to go to other page Code Example how to make button in asp.net to go to other page Code Example
c# get process file location Code Example c# get process file location Code Example
c# list audio devices Code Example c# list audio devices Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11