Skip to content

Commit a2ec127

Browse files
authored
fixed
1 parent 776ead2 commit a2ec127

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

utils/Utils.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
using System;
22
using System.Collections;
3+
using System.Collections.Generic;
34

45
public static class Utils
56
{
6-
public static List<T> addList(List<T> l, params Object[] itemsToAdd)
7+
public static List<Object> addList(List<Object> l, params Object[] itemsToAdd)
78
{
8-
foreach (item : l)
9+
foreach (var item in l)
910
{
10-
l.add(item);
11+
l.Add(item);
1112
}
1213
return l;
1314
}

0 commit comments

Comments
 (0)