I have the following expression in an if-statement:
string.Join(“,”,row.ItemArray).Contains(FromPage.ToString)
Now the problem is that when I have a new value of “8” and there is for example “18” already in the table it gives true but I want false. How can I have an exact match?
Thanks