I have a Dictionary<string, string>
in which I am storing paths to my configuration files like:
Config0, <some path>
Config1, <some path>
Config2, <some path>
Someconfigkey, <some path>
Someconfigkey, <some path>
Someconfigkey, <some path>
...
...
I want to get all the key,values from this dictionary for keys that contain substring Config
Any recommendations how to do this efficiently?