CSMongo.MongoDocument.operator C# (CSharp) Method

operator() public static method

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