I would like to create an array of values only with elements of my dictionary which values is equal zero.
Dictionary<string, int> dict = new Dictionary<string, int>();
int notZeroValues = dict.Values.ToArray(); //sth here to get these elements efficiently
Please help?