ExtraInfo Serialization
$toString() Convention
// User.cfc
component{
function $toString(){
// return my representation as a comma list of values of my properties
return "#getName()#,#getAge()#,#getEmail()#";
}
}Was this helpful?