I have two string lists as follows:
List1={‘abc’,‘123’} and List2={‘pqr’,‘456’}
I want to merge these two lists into one such that the output will be:
List={‘abcpqr’,‘123456’}
I have done it like this:
item.ToString+List2(count)
I am getting following error:
Index was out of range
What am I doing wrong?