You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -44,7 +44,7 @@ public static IEnumerable<string> SelectItemsByRanges(this IEnumerable<string> s
44
44
/// <summary>
45
45
/// Retrieves the concatenated items within the specified range as one single <see langword="string"/> joined by <see cref="Environment.NewLine"/> character.
46
46
/// </summary>
47
-
/// <param name="source">The <see cref="IEnumerable{TData}"/> to select from.</param>
47
+
/// <param name="sourceItems">The <see cref="IEnumerable{TData}"/> to select from.</param>
48
48
/// <param name="range">
49
49
/// A tuple containing the start and end indices of the range as <see langword="int"/>.
50
50
/// The start index specifies the first item to include, and the end index specifies the last item to include.
@@ -54,28 +54,30 @@ public static IEnumerable<string> SelectItemsByRanges(this IEnumerable<string> s
54
54
/// If <c>true</c>, the start and end indices are treated as 0-based; otherwise, they are treated as 1-based.
55
55
/// </param>
56
56
/// <returns>
57
-
/// A string containing the string typed items of <paramref name="source"/> within the specified range, joined by the system's newline character.
57
+
/// A <see langword="string"/> containing the Items of <paramref name="sourceItems"/> within the specified range, joined by <see cref="Environment.NewLine"/
58
+
/// >.
58
59
/// </returns>
59
-
publicstaticstringGetItemsWithinRange(thisIEnumerable<string>source,(intStart,intEnd)range,boolisNullBased=true)// TODO: Consider to limit int to min 0 value instead of implicit allowing negative.
60
+
publicstaticstringGetItemsWithinRange(thisIEnumerable<string>sourceItems,(intStart,intEnd)range,boolisNullBased=true)// TODO: Consider to limit int to min 0 value instead of implicit allowing negative.
0 commit comments