0

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
dokaspar
  • 8,186
  • 14
  • 70
  • 98

1 Answers1

1
var portString = port.toString
Jon
  • 398
  • 1
  • 11