JsonConvert.SerializeObject(this);
クラスで関数の結果をレンダリングする方法はありますか?
public string Name { get; private set; } // renders fine in the outputted json
public string AdHocRecipientsStub()// I want this also in the outputted json
{
return AdHocRecipients.ToString().Substring(0, 15) + "...";
}