Hi,
I have found ticket https://www.devexpress.com/Support/Center/Question/Details/T419773 which seems to be similar and is marked as fixed, but I still have issue in following code:
C#popupEdit.Popup += (s, evt) =>
{
rowCount = gridView.DataRowCount;
if (selRows.Length == 0 && selectedObjects != null && selectedObjects.Count() > 0)
{
for (int i = 0 <-- SEMICOLON HERE JUMPS TO THE END )
gridView.SelectAll();
selRows = gridView.GetSelectedRows();
}
prevSelRows = selRows;
gridView.ClearSelection();
foreach (var selectedRow in selRows)
gridView.SelectRow(selectedRow);
}; <-- JUMPS HERE
When I am trying to define for loop, smart semicolon does not allow me to define it, instead jumps to the end.
Regards,
Mario
Hi Mario,
Thank you for pointing out this issue and providing the code sample. I have reproduced this incorrect behavior of the Smart Semicolon feature in a lambda expression. We are working on it and will inform you of our progress.