public void AppendTo(StringBuilder sb) { sb.Append("method: "); sb.AppendLine(string.IsNullOrEmpty(Name) ? "anonymous" : Name); sb.Append("signature: "); Args.AppendTo(sb); sb.AppendLine(); sb.AppendLine("body: {"); Body.AppendTo(sb); sb.AppendLine("}"); }