56 references to GetLowerBound
Microsoft.Build.Framework (4)
SegmentedArray.cs (1)
143var dstLB = destinationArray.GetLowerBound(0);
SegmentedDictionary`2.cs (3)
857if (array.GetLowerBound(0) != 0) 1338if (array.GetLowerBound(0) != 0) 1538if (array.GetLowerBound(0) != 0)
Microsoft.VisualBasic.Core (2)
Microsoft\VisualBasic\FileIO\TextFieldParser.vb (2)
1288lowerBound = m_DelimitersCopy.GetLowerBound(0) 1306lowerBound = m_FieldWidthsCopy.GetLowerBound(0)
System.Collections (7)
System\Collections\Generic\LinkedList.cs (1)
456if (array.GetLowerBound(0) != 0)
System\Collections\Generic\PriorityQueue.cs (1)
944if (array.GetLowerBound(0) != 0)
System\Collections\Generic\SortedDictionary.cs (2)
565if (array.GetLowerBound(0) != 0) 726if (array.GetLowerBound(0) != 0)
System\Collections\Generic\SortedList.cs (1)
461if (array.GetLowerBound(0) != 0)
System\Collections\Generic\SortedSet.cs (1)
549if (array.GetLowerBound(0) != 0)
System\Collections\Generic\Stack.cs (1)
129if (array.GetLowerBound(0) != 0)
System.Collections.Immutable (1)
System\Collections\Frozen\FrozenDictionary.cs (1)
357if (array.GetLowerBound(0) != 0)
System.Data.Common (3)
System\Data\DataRowComparer.cs (3)
63int index1 = a.GetLowerBound(0); 64int index2 = b.GetLowerBound(0); 203hash = array.GetValue(array.GetLowerBound(0))!.GetHashCode();
System.ObjectModel (1)
System\Collections\CollectionHelpers.cs (1)
19if (array.GetLowerBound(0) != 0)
System.Private.CoreLib (30)
src\libraries\System.Private.CoreLib\src\System\Array.cs (21)
387CopyImpl(sourceArray, sourceArray.GetLowerBound(0), destinationArray, destinationArray.GetLowerBound(0), length, reliable: false); 657return IndexOf(this, value) >= this.GetLowerBound(0); 787return BinarySearch(array, array.GetLowerBound(0), array.Length, value, null); 826return BinarySearch(array, array.GetLowerBound(0), array.Length, value, comparer); 848int lb = array.GetLowerBound(0); 1056Copy(this, GetLowerBound(0), array!, index, Length); 1346return IndexOf(array, value, array.GetLowerBound(0), array.Length); 1359int lb = array.GetLowerBound(0); 1376int lb = array.GetLowerBound(0); 1570int lb = array.GetLowerBound(0); 1583int lb = array.GetLowerBound(0); 1597int lb = array.GetLowerBound(0); 1826Reverse(array, array.GetLowerBound(0), array.Length); 1839int lowerBound = array.GetLowerBound(0); 1936Sort(array, null, array.GetLowerBound(0), array.Length, null); 1949Sort(keys, items, keys.GetLowerBound(0), keys.Length, null); 1982Sort(array, null, array.GetLowerBound(0), array.Length, comparer); 1997Sort(keys, items, keys.GetLowerBound(0), keys.Length, comparer); 2025int keysLowerBound = keys.GetLowerBound(0); 2026if (items != null && keysLowerBound != items.GetLowerBound(0))
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (3)
1050if (array.GetLowerBound(0) != 0) 1539if (array.GetLowerBound(0) != 0) 1733if (array.GetLowerBound(0) != 0)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Queue.cs (1)
130if (array.GetLowerBound(0) != 0)
src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\Collection.cs (1)
182if (array.GetLowerBound(0) != 0)
src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\CollectionHelpers.cs (1)
19if (array.GetLowerBound(0) != 0)
src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\ReadOnlyCollection.cs (1)
112if (array.GetLowerBound(0) != 0)
src\System\Array.CoreCLR.cs (2)
50int srcLB = sourceArray.GetLowerBound(0); 55int dstLB = destinationArray.GetLowerBound(0);
System.Runtime.Serialization.Formatters (1)
System\Runtime\Serialization\Formatters\Binary\BinaryObjectWriter.cs (1)
450lowerBoundA[i] = array.GetLowerBound(i);
System.Threading.Tasks.Parallel (1)
System\Threading\Tasks\Parallel.cs (1)
1706int from = array.GetLowerBound(0);
UIAutomationClientSideProviders (2)
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (2)
421if (a1.GetLowerBound(i) != a2.GetLowerBound(i)
xunit.assert (4)
Sdk\CollectionTracker.cs (4)
128 if (expectedArray.Rank == 1 && expectedArray.GetLowerBound(0) == 0 && 129 actualArray.Rank == 1 && actualArray.GetLowerBound(0) == 0) 138 if (expectedArray.GetLowerBound(rank) != actualArray.GetLowerBound(rank) || expectedArray.GetUpperBound(rank) != actualArray.GetUpperBound(rank))