web-dev-qa-db-fra.com

Objet Newtonsoft → Obtenir la chaîne JSON

J'ai un objet créé par le sérialiseur JSON de Newtonsoft. J'ai besoin d'obtenir la chaîne JSON qui a été utilisée pour créer l'objet. Comment sérialiser l'objet en une simple chaîne JSON?

35
BahaiResearch.com

Essaye ça:

public string jsonOut()
{
    // Returns JSON string.
    return JsonConvert.SerializeObject(this);       
}
81
Sheena