Should return an instance of the class that is associated with this 
 collection of objects. This is the generic version of the ItemInstance function.
 It is suffixed with an underscore so that it does not conflict with the underlying
 non-generic equivalent ItemInstance function. It's purpose is indentical to the
 non-generic version.
 
        
        Namespace: DatabaseObjects.GenericAssembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0
 Syntax
Syntax
| C# | 
|---|
| protected virtual T ItemInstance_() | 
| Visual Basic | 
|---|
| Protected Overridable Function ItemInstance_ As T | 
| Visual C++ | 
|---|
| protected: virtual T ItemInstance_() | 
Return Value
[Missing <returns> documentation for "M:DatabaseObjects.Generic.DatabaseObjectsVolatile`1.ItemInstance_"]
 Examples
Examples
 CopyC#
CopyC#Protected Overrides Function ItemInstance_() As Product
    Return New Product
End Function 
     
     
     
     
    