Ghost1372

everything can be handy

ListExtensions

Available Extensions
Clone
AddIfNotExists
UpdateValue
DeleteIfExists
AreValuesNull

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

var dupList = list.Clone();

//

list.AddIfNotExists(item);

//

list.UpdateValue(item, newItem);

//

list.DeleteIfExists(item);

//

bool areNull = list.AreValuesNull();

Demo

you can run demo and see this feature.

0%