Converting variable to string

How can I convert a variable value to a string so that I can include it within the strMessage with the “print” statement to display it in the command line ?
Rhino.Print ([strMessage])

Thanks

Normally Cstr(blabla) should do it as long as blabla can be converted into a string - will work with things like doubles and integers, but not with an array for example.

–Mitch

Great. That worked.
Thank you