Example #1
0
 /// <summary>
 /// Adds multiple elements to the array.
 /// </summary>
 /// <param name="values">A list of values to add to the array.</param>
 /// <returns>The array (so method calls can be chained).</returns>
 public BsonArray AddRange(IEnumerable <double> values)
 {
     if (values != null)
     {
         foreach (var value in values)
         {
             this.values.Add(BsonDouble.Create(value));
         }
     }
     return(this);
 }
Example #2
0
 public static dynamic ToDynamic(this BsonDouble bsonDouble) => bsonDouble.Value;