e.g.
string str = "{\"aps\":{\"alert\":\"" + title + "" + message + "\"}}";
I need to make it as for readability:
string str = "
{
\"aps\":
{
\"alert\":\"" + title + "" + message + "\"
}
}";
How to achieve this, please suggest.