MiniUtilCreateForT Method
Create an object of type T by calling T.Create().
Namespace: Karamba.UtilitiesAssembly: KarambaCommon (in KarambaCommon.dll) Version: 3.0.8.0+eb23a7103f0eca0b6d808121e15fec6899194e15
public static T CreateFor<T>(
params Object[] args
)
where T : class
Public Shared Function CreateFor(Of T As Class) (
ParamArray args As Object()
) As T
public:
generic<typename T>
where T : ref class
static T CreateFor(
... array<Object^>^ args
)
static member CreateFor :
args : Object[] -> 'T when 'T : not struct
- args Object
- arguments to create.
- T
- the class of the to generating object.
Tthe object hopefully.