ObjectCreatorFuncTObject Delegate | 
 
            Delegate which is used to create new instances of an object based on a type, and which is much faster than Activator.CreateInstance
            
 
    Namespace: 
   SD.LLBLGen.Pro.LinqSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntaxpublic delegate TObject ObjectCreatorFunc<TObject>(
	params Object[] args
)
Public Delegate Function ObjectCreatorFunc(Of TObject) ( 
	ParamArray args As Object()
) As TObject
Parameters
- args
 - Type: SystemObject
 
Type Parameters
- TObject
 
Return Value
Type: 
TObject
See Also