Skip to content

Commit 776ead2

Browse files
authored
Update and rename list_funcs.cs to Utils.cs
1 parent 7494b46 commit 776ead2

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

utils/Utils.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
using System.Collections;
3+
4+
public static class Utils
5+
{
6+
public static List<T> addList(List<T> l, params Object[] itemsToAdd)
7+
{
8+
foreach (item : l)
9+
{
10+
l.add(item);
11+
}
12+
return l;
13+
}
14+
}

utils/list_funcs.cs

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)