RangeCollectionAddRange Method (Int64, Int64) |
Add all the longs starting at 'begin' to 'last' (inclusive) to the RangeCollection. They may or may not already be in the RangeCollection.
The number of longs added must not be more than long.MaxValue.
Namespace: Bio.UtilAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public void AddRange(
long begin,
long last
)
Public Sub AddRange (
begin As Long,
last As Long
)
public:
void AddRange(
long long begin,
long long last
)
member AddRange :
begin : int64 *
last : int64 -> unit
Parameters
- begin
- Type: SystemInt64
The first long to add - last
- Type: SystemInt64
The last long to add
See Also