There are two lists:
List<string> files;
List<Filter> filters;
I want the result to be like:
List<KeyValuePair<string, Filter>> fileFilterMap;
I tried several stuff (lambda expressions, linq) but failed.
I really do not want the
for(int i = 0; i< files.count; i++)
method.
You can use:
Or: