Problemi persistono :master:

string[] arrStr = strarticoli.Split(new char[] { "|||" });

Error 1 Cannot implicitly convert type 'string' to 'char'

---

for (int ind = 0; ind <= Information.UBound(arrStr) - 1; ind++)

Error 2 The name 'Information' does not exist in the current context

---

ArrayList.Add(arrStr(ind));

Error 3 'arrStr' is a 'variable' but is used like a 'method'

Sonia