Hi,
I have a data string that I put into a list. When I start iterating through the list, I have an if statement that when x.Contains(g), do this. The code that I wrote is..
string g = "<a class=";
List<string> K = new List<string>();
foreach (var x in myList)
{
if (x.Contains(g))
{...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.