TouchDevelop的String Concat错误

时间:2013-03-03 09:11:08

标签: arrays string touchdevelop

我开始使用TouchDevelop进行编程,但我输入了以下错误。

action main ()      
var strings := collections → create string collection      
strings → set at(1, "I")      
strings → set at(2, "II")      
strings → set at(3, "III")      
strings → set at(4, "IV")      
strings → set at(5, "V")      
strings → set at(6, "VI")      
var x := math → random(6) + 1      
var s := strings → at(x)      
"The value of dice is " → concat(s) → post to wall # ERROR AT CONCAT(S)

1 个答案:

答案 0 :(得分:0)

对于touchdevelop语言,您希望使用字符串连接字符,即|| 。 你的行将是:

"The value of dice is " || s → post to wall

如果您使用的是Windows Phone 7,则可以在数学运算符旁边的第三个菜单中找到双管道字符。