How to convert the enum below from int to string?
enum class EUserState :uint8
{
    Offline,
    Online,
    Busy,
    Away,
    Snooze,
    LookingToTrade,
    LookingToPlay, 
};
EUserState temp=EUserState::Online;
How to convert temp to a string without using a string array or something repeatly.
I don't want to make it cockamamie. 
Trying to find a automatic change? 
Can anyone help? :)
