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

DeepClone() public method

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