2
I have a variable which is an array of strings and I want to print their values, but that values and consequently the amount of them is only set after the system works.
How can I print on a MessageBox, for example, all values of all positions in one MessageBox instead of making a for and print one by one?
The positions of a string are
chars. This is exactly what you want to print?– Leonel Sanches da Silva
@Ciganomorrisonmendez, are not char, are string,
string[] dataTransacao = null;– Jeremias Santos
So it’s a vector of
string.stringis a vector by definition (see 4th example). I’ll put an answer to you.– Leonel Sanches da Silva