BsonArray Constructor (IEnumerable<Int32>) |
Initializes a new instance of the BsonArray class.
Namespace: MongoDB.BsonAssembly: MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.4.1
Syntaxpublic BsonArray(
IEnumerable<int> values
)
Public Sub New (
values As IEnumerable(Of Integer)
)
new :
values : IEnumerable<int> -> BsonArray
Parameters
- values
- Type: System.Collections.Generic.IEnumerable<Int32>
A list of values to add to the array.
See Also