MongoDB.Bson.LazyBsonArray.Clone C# (CSharp) Method

Clone() public method

Creates a shallow clone of the array (see also DeepClone).
public Clone ( ) : BsonValue
return BsonValue
        public override BsonValue Clone()
        {
            if (_slice != null)
            {
                return new LazyBsonArray(CloneSlice());
            }
            else
            {
                return base.Clone();
            }
        }