in c++, we can code this:
QStringList qslstHeaderLabels; qslstHeaderLabels.append("Key"); qslstHeaderLabels.append("Value"); this.SetHeaderLabel(qslstHeaderLabels)
but in C#, QStringList has no "append" function, and the construct not support string[] or List...
in c++, we can code this:
QStringList qslstHeaderLabels; qslstHeaderLabels.append("Key"); qslstHeaderLabels.append("Value"); this.SetHeaderLabel(qslstHeaderLabels)but in C#, QStringList has no "append" function, and the construct not support string[] or List...