Parameter already declared with name 'Item'


Recently, UiPath studio had make a update, after update i got this error, how can solve it?
Appreciate for you idea and comment. Thks

is it i just remove the .Item will do ?

Hi @vegekwok ,

There are some things not clear or shown, Could you let us know what is the type of item variable ?

Also, the syntax seems correct, just that try adding a .ToString at the end like provided below :

item.Equals(row.Item("Email").ToString)

If the above still gives error, try the below :

item.ToString.Equals(row("Email").ToString)

Let us know if the issue still persists after checking with above and let us know the type of item variable

@vegekwok

I guess you are using it in a for loop…and the loop had each item as item and you are trying to use item again so its conflicting…just change the name of that item and it should be solved

cheers