Question

What is the preferred way to convert an Integer into a String in Xtend? Is there a better way than this?

var int port = 12345
var String portStr = "" + port
Was it helpful?

Solution

var portString = port.toString
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top