Skip to content

Commit 58def54

Browse files
Matthew AitkenMatthew Aitken
Matthew Aitken
authored and
Matthew Aitken
committedAug 9, 2018
List<T>.AddIfNotNull(T item) method. Useful to avoid a lot of repetitive null checks
1 parent 1725956 commit 58def54

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎Extensions/ListExtensions.cs

+8
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,13 @@ public static List<T> Shuffled<T>(this T[] list) {
2828

2929
return result;
3030
}
31+
32+
public static void AddIfNotNull<T>(this List<T> list, T item) {
33+
if (item == null) {
34+
return;
35+
}
36+
37+
list.Add(item);
38+
}
3139
}
3240
}

0 commit comments

Comments
 (0)