Creates a new IListDataObject where the members of the list are defined by the listItems parameter
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
| C# |
|---|
IDataObject MakeListDataObject(
IEnumerable<Object> listItems
) |
| Visual Basic |
|---|
Function MakeListDataObject (
listItems As IEnumerable(Of Object)
) As IDataObject |
| Visual C++ |
|---|
IDataObject^ MakeListDataObject(
IEnumerable<Object^>^ listItems
) |
| F# |
|---|
abstract MakeListDataObject :
listItems : IEnumerable<Object> -> IDataObject
|
Parameters
- listItems
- Type: System.Collections.Generic..::..IEnumerable<(Of <(<'Object>)>)>
The set of items in the list
Return Value
Type:
IDataObjectA new dataobject that is the head of the list.
See Also