Dealing with strings C#

Hello

string strSMS = "{ \"messages\" : [ { \"content\" : \"Testing\", \"destination\" : \">>0769422313<<\" } ] }";

I need my strSMS to be like this as an output:

{ "messages" :
[
{
"content" : "Testing",
"destination" : ">>0769422313<<"
}
]
}