MongoDB.Bson.MaterializedOnDemandBsonArray.this C# (CSharp) Method

this() public method

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