Hello,

I have tried IN -> Contains function on our biggest project and it doesn't compile after that. Reason is that we have Insert command on it.

Supose something like this:
Code:
string city

move "Niagara, NY" to city
insert " Falls" in city at 8
It gets refactored to:
Code:
string city

move "Niagara, NY" to city
insert (city contains " Falls") at 8
Regards.