11 references to Min
System (10)
compmod\system\collections\generic\sortedset.cs (10)
197T min = this.Min; 1147T min = Min; 1215if (!(comparer.Compare(asSorted.Max, this.Min) < 0 || comparer.Compare(asSorted.Min, this.Max) > 0)) { 1216T min = this.Min; 1341SortedSet<T> prunedOther = asSorted.GetViewBetween(this.Min, this.Max); 1416SortedSet<T> pruned = GetViewBetween(asSorted.Min, asSorted.Max); 1457SortedSet<T> pruned = GetViewBetween(asSorted.Min, asSorted.Max); 1534if (asSorted != null && AreComparersEqual(this, asSorted) && (comparer.Compare(Min, asSorted.Max) > 0 || comparer.Compare(Max, asSorted.Min) < 0)) {
System.Data.Entity (1)
System\Data\Mapping\Update\Internal\Graph.cs (1)
166TVertex from = rootsPriorityQueue.Min;