MongoDB.Bson.RawBsonArray.Add C# (CSharp) 메소드

Add() 공개 메소드

Adds an element to the array.
public Add ( BsonValue value ) : BsonArray
value BsonValue The value to add to the array.
리턴 BsonArray
        public override BsonArray Add(BsonValue value)
        {
            throw new NotSupportedException("RawBsonArray instances are immutable.");
        }