Class OverviewUsed to provide information when instantiating an object in an application. Stores generation information and constructor parameters.
public NewInfo<T>(params object[] args)
DescriptionConstructor for NewInfo<T>, not NewInfo. Provides one way of indicating the desired type.
args
Arguments to be passed to the object's constructor. Can be AppVars or serializable objects.
public NewInfo(string typename, params object[] args)
Description
Parameters typename
Fully qualified type name of the generated object.
Arguments to be passed to the object's constructor. Can be AppVars or serializable objects.
public NewInfo(Type type, params object[] args)
Description
The type of the object to create.
Arguments to be passed to the object's constructor. Can be AppVars or serializable objects.
public string TypeFullName { get; }
DescriptionReturns the type's full name.
public object[] Args { get { return _args; } } Description Returns the set of constructor parameters. JR
|
|