Код: Выделить всё
protected Dictionary values;
lock (values)
foreach (KeyValuePair k in values) // error here
{} //do something here
Подробнее здесь: https://stackoverflow.com/questions/794 ... cked-block
Код: Выделить всё
protected Dictionary values;
lock (values)
foreach (KeyValuePair k in values) // error here
{} //do something here