CSMongo.Bson.BsonDocument.operator C# (CSharp) Method

operator() public static method

Merges another object with this object - Same as calling Merge
public static operator ( ) : BsonDocument
return BsonDocument
        public static BsonDocument operator +(BsonDocument target, object value)
        {
            target.Merge(value);
            return target;
        }