Reputation: 1301
I am learning Roslyn and I wonder, is there any API to "convert" expression trees to Roslyn syntax trees ?
Upvotes: 4
Views: 221
Reputation: 133
there's no such API by now.
if you're seeking for a quick workaround, you could try to convert the expression tree to source code firstly
Upvotes: 2