|
@@ -8,6 +8,8 @@ namespace System.Linq
|
|
|
{
|
|
|
public static partial class EnumerableEx
|
|
|
{
|
|
|
+
|
|
|
+#if !(REFERENCE_ASSEMBLY && (NET6_0))
|
|
|
/// <summary>
|
|
|
/// Returns the elements with the minimum key value by using the default comparer to compare key values.
|
|
|
/// </summary>
|
|
@@ -46,5 +48,6 @@ namespace System.Linq
|
|
|
|
|
|
return ExtremaBy(source, keySelector, (key, minValue) => -comparer.Compare(key, minValue));
|
|
|
}
|
|
|
+#endif
|
|
|
}
|
|
|
}
|