public object New(
                string typeName,
                object[] args)
            {
                var type = TypeHelper.ResolveType(typeName, true);

                return(ConstructorHelper.InvokeConstructor(type, args));
            }
Example #2
0
 public object New(object[] args)
 {
     return(ConstructorHelper.InvokeConstructor(Type, args));
 }