i'm trying to create a dictionary with a string key and a tuple value(string, bool). I'd like to make the tuple a named one, so something like:
Dictionary<string, (string, bool)> spColumnMapping = new Dictionary<string, (string, bool)>(); Is it possible?
Thanks
var spColumnMapping = new Dictionary<string, (string name, bool theBool)>();. Works.