Skip to content

Commit 9cf18b5

Browse files
committed
fix ambiguity error with .net 2 runtime
1 parent 1c9f690 commit 9cf18b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/avrdudess/HashSetD.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class HashSetD<T> : IEnumerable<T>
1919
public HashSetD() { }
2020

2121
public void Add(T item) { dict[item] = true; }
22-
public void Add(List<T> items)
22+
public void AddRange(List<T> items)
2323
{
2424
items.ForEach(x =>
2525
{

0 commit comments

Comments
 (0)