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

this() 공개 메소드

Gets or sets a value by position.
public this ( int index ) : BsonValue
index int The position.
리턴 BsonValue
        public override BsonValue this[int index]
        {
            get
            {
                EnsureIsMaterialized();
                return base[index];
            }
            set
            {
                EnsureIsMaterialized();
                base[index] = value;
            }
        }