↧
Answer by aldonaletto
You could use ToString: var str: String; for (var i = 0; i < seed.length; i++){ str = str + seed[i].ToString(); }
View ArticleAnswer by gfr
You could use the [`Join()` method][1] of the `Array` class: var str = Array(seed).Join(""); [1]: http://unity3d.com/support/documentation/ScriptReference/Array.Array.html
View ArticleAnswer by TAMgames
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[]
View Article