ProcessQueueTRemoveRange Method
Namespace: Gemstone.Threading.CollectionsAssembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.141 -- Release Build+5e2ec463438f5de09767d41cb13e56e90c503d09
public virtual void RemoveRange(
int index,
int count
)
Public Overridable Sub RemoveRange (
index As Integer,
count As Integer
)
public:
virtual void RemoveRange(
int index,
int count
)
function RemoveRange(index, count);
Parameters
- index Int32
- The zero-based starting index of the range of elements to remove.
- count Int32
- The number of elements to remove.
ArgumentOutOfRangeException | index is less than 0 -or- count is less than 0. |
ArgumentException | index and count do not denote a valid range of elements in the ProcessQueueT. |