MongoDB.Bson.MaterializedOnDemandBsonArray.Remove C# (CSharp) Method

Remove() public method

Removes the first occurrence of a value from the array.
public Remove ( BsonValue value ) : bool
value BsonValue The value to remove.
return bool
        public override bool Remove(BsonValue value)
        {
            EnsureIsMaterialized();
            return base.Remove(value);
        }