//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#: //ORIGINAL LINE: private void shouldIterateCorrectlyOver(Labels... data) throws Exception private void ShouldIterateCorrectlyOver(params Labels[] data) { // GIVEN using (AllEntriesLabelScanReader reader = new NativeAllEntriesLabelScanReader(Store(data), HighestLabelId(data))) { // WHEN/THEN AssertRanges(reader, data); } }
internal NodeLabelRangeIterator(NativeAllEntriesLabelScanReader outerInstance, long lowestRange) { this._outerInstance = outerInstance; this.CurrentRange = lowestRange; }