MongoDB.Bson.MaterializedOnDemandBsonArray.Insert C# (CSharp) 메소드

Insert() 공개 메소드

Inserts a new value into the array.
public Insert ( int index, BsonValue value ) : void
index int The zero based index at which to insert the new value.
value BsonValue The new value.
리턴 void
        public override void Insert(int index, BsonValue value)
        {
            EnsureIsMaterialized();
            base.Insert(index, value);
        }