MongoDB.Bson.RawBsonArray.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)
        {
            throw new NotSupportedException("RawBsonArray instances are immutable.");
        }