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
Copy file name to clipboardExpand all lines: src/F23.StringSimilarity/Support/ArrayExtensions.cs
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,10 @@ internal static class ArrayExtensions
38
38
/// <summary>
39
39
/// Creates a new array by padding the source array to the specified final length with the given padding value.
40
40
/// </summary>
41
+
/// <param name="source">The source array to be padded.</param>
42
+
/// <param name="finalLength">The desired final length of the array after padding. Must be greater than or equal to the length of <paramref name="source"/>.</param>
43
+
/// <param name="paddingValue">The value used to pad the array if it is shorter than <paramref name="finalLength"/>.</param>
44
+
/// <returns>A new array of length <paramref name="finalLength"/> containing the elements of <paramref name="source"/>, followed by padding values if necessary.</returns>
0 commit comments