Имею такой код: gvEnvironmentGrid.Columns[columnEnvironmentColor].ColumnEdit.EditValueChanged += new EventHandler((object sender, EventArgs e) => { var tempColor = sender as ColorEdit; colorMatchContent.Rows.Cast<DataRow>().Where(r => (((Category)r[columnEnvironment]).Id == environmentCategoryGuid)).ForEach(row => (Category)row[columnEnvironment] = new Category(environmentCategoryGuid, (string)row[columnEnvironmentName], CategoryShape.Rectangle, tempColor.Color)); gcTabColorMatchGrid.RefreshDataSource(); gcTabColorMatchGrid.Update(); }); But I have a syntax problem
** the left hand side of the assignment