macpak
macpak

Reputation: 1301

Roslyn: Expressions and SytnaxTree

I am learning Roslyn and I wonder, is there any API to "convert" expression trees to Roslyn syntax trees ?

Upvotes: 4

Views: 221

Answers (1)

Sam
Sam

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

Related Questions