New Framework Equivalent of str()?

Is there a new framework equivalent of str()?
I like to use it when debugging, it’s easier to get values out through the debuglog and str() than it is to pause and dig through the IDE.

Int8, UInt8, Int16, UInt16, Int32, UInt32, Int64, UInt64, Integer, UInteger, Single, Double, Currency, and Xojo.Core.Date have a ToText function on them which will do what you want.

Boolean does not have one :frowning:
Request: <https://xojo.com/issue/38001>

[quote=163938:@Tim Parnell]Boolean does not have one :frowning:
Request: <https://xojo.com/issue/38001>[/quote]

Thankfully it’s quite easy to do this yourself:

DebugLog "Value: " + If(myBool, "true", "false")