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

RemoveAt() 공개 메소드

Removes an element from the array.
public RemoveAt ( int index ) : void
index int The zero based index of the element to remove.
리턴 void
        public override void RemoveAt(int index)
        {
            throw new NotSupportedException("RawBsonArray instances are immutable.");
        }