StringList

In BI# you often deal with lists of different types. Sometimes it is useful to convert the elements of a list into strings. To store such a list in BI#, use a StringList variable:

OLAPConnection con = OLAPCreateConnection(
	"server",
	"user",
	"password"
);
OLAPElementList list = OLAPGetElementList(con, "DACOUNT", true);
StringList strings = ToStringList(list);