2
I have a variable which is an array of string
s 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
char
s. 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
.string
is a vector by definition (see 4th example). I’ll put an answer to you.– Leonel Sanches da Silva