Basically I have this which I know won’t work but I it illustrates what I’m trying to do:
MessageBox.Show(‘Found these: ‘ + keywords[i] + ‘ keywords.’);
And I need to see this:
Found these: Item1, Item2 keywords.
There may be 1 keyword there may be 4, how should I do this?
Many thanks.
You could use string.Join: