Hi,
I have constructed the following in C#:
string[] lv_RemoveList = new string[2]{"<P>","</P>"};
OR
string[] lv_RemoveList = new string[2]
lv_RemoveList[0] = "<P>";
lv_RemoveList[1] = "</P>";
when I do lv_RemoveList[1] it says it is empty.
Am I doing something wrong?
I have constructed the following in C#:
string[] lv_RemoveList = new string[2]{"<P>","</P>"};
OR
string[] lv_RemoveList = new string[2]
lv_RemoveList[0] = "<P>";
lv_RemoveList[1] = "</P>";
when I do lv_RemoveList[1] it says it is empty.
Am I doing something wrong?