I have this:
void SaveMultiple(Dictionary<string, decimal> updates)
{
ColumnSet cs = new ColumnSet();
cs.Attributes = new string[] { "att1", "att2", "add3" };
}
My attributes array needs to be all the string values of the dictionary.
How can I do that?
Thanks
Dictionary<string, int>, the strings are called the key (left hand side), the ints are called the value (right hand side). Important distinction to make, as keys are forcibly unique, whereas values are not.