/// <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); }
public static dynamic ToDynamic(this BsonDouble bsonDouble) => bsonDouble.Value;