If I have an array thats like:
var seed : int[] = [1, 2, 3];
How do I make a string out of it like “123”?
If I have an array thats like:
var seed : int[] = [1, 2, 3];
How do I make a string out of it like “123”?
You could use ToString:
var str: String;
for (var i = 0; i < seed.length; i++){
str = str + seed*.ToString();*
}
I’m not sure this will work but I think you you can just replace int with string…
Instead of using
int
just use
string