Beispiel #1
0
 /// <summary>
 /// Creates instance of a class from underlying assembly.
 /// </summary>
 /// <param name="typeName">The 'Type' full name of the type to create. (see Assembly.CreateInstance())</param>
 /// <returns>Instance of the 'Type'.</returns>
 public object CreateObject(string typeName)
 {
     if (this.disposed)
     {
         throw new ObjectDisposedException(this.ToString());
     }
     return(asmBrowser.CreateInstance(typeName));
 }