Skip to content

Commit 2437077

Browse files
authored
Update TypeExtensions.cs
1 parent 3ddb6a2 commit 2437077

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/JsonApiDotNetCore/Extensions/TypeExtensions.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ namespace JsonApiDotNetCore.Extensions
88
{
99
internal static class TypeExtensions
1010
{
11+
/// <summary>
12+
/// Extension to use the LINQ AddRange method on an IList
13+
/// </summary>
1114
public static void AddRange<T>(this IList list, IEnumerable<T> items)
1215
{
1316
if (list == null) throw new ArgumentNullException(nameof(list));

0 commit comments

Comments
 (0)